Hi,
I have some problem with DataGridView in C#.
case is:
I do some update on database then I reload DataGridView with new values:
myDataGridView.DataSource = myDataSet.Tables[0]
Everything is ok, but recently I was asked if there is possibility to keep the same column filtering applied after reloading data?
What would be approach to do this filtering case?
Thanks for any ideas.