Hi,
I have a tableadapter with a .Fill method that sorts on id and date
I have a datagridview that has a bindingsource to the table
The column collection for the id and date columns are set to autosort
When I add a new row, update and fill the table the dataview is not sorted as follows:
1 01/05/2007
2 02/05/2007
3 29/04/2007
instead of
3 29/04/2007
1 01/05/2007
2 02/05/2007
The tableadapter clears the table before fill and the fill gets the data sorted
What have I missed??
I have a tableadapter with a .Fill method that sorts on id and date
I have a datagridview that has a bindingsource to the table
The column collection for the id and date columns are set to autosort
When I add a new row, update and fill the table the dataview is not sorted as follows:
1 01/05/2007
2 02/05/2007
3 29/04/2007
instead of
3 29/04/2007
1 01/05/2007
2 02/05/2007
The tableadapter clears the table before fill and the fill gets the data sorted
What have I missed??