Hi,
I'm trying to sort a DataTable using the following code:
Private Function sortDataTable(ByVal dTable As DataTable) As DataTable
Dim dView As New DataView(dTable)
dView.Sort = "Field ASC"
Return dTable
End Function
But it doesn't work. What is wrong? How can I sort the DataTable?
Thanks,
Ana