I am working a legacy app which is .net 1.1 and I need to retrieve the rows in a datagrid post sort (by clicking on column header). This sounded like an easy task however, the answer seems to elude me. I can retrieve the rows from the dataset just fine but, they are not sorted again when the header is clicked.

I appreciate any input.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I found the answer was to create a DataView such as

Dim dv As DataView = CType(dg.DataSource, DataTable).DefaultView

Hope this might help someone else later on...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.