I have Dataset that include table Items, How can I sort this table by Code field ?
thank\'s in advance
Use a DataView object and call the Sort method on it. Or, if your dataset came from SQL, use the ORDER BY clause to sort it before it gets loaded into the dataset.