Thanks for your input. I have been reading that I should be using the default view, which can be sorted. Tables can not be sorted and its difficult to change the order of them. I wrote a little
VB app where the sort method works on the default DataView.
Dim dvCases as DataView
Dim dtCaseData As New DataTable
dvCases = dtCaseData.DefaultView
dvCases.Sort = "name ASC"
Anybody know how to rewrite this in C#?