R
Ruslan
Hello,
I have:
BindingManagerBase bm;
DataTable myTable;
DataView myDataView
DataGrid myGrid;
myDataView = myTable["tab"] // data in table exist
myDataView.Sort = "field1";
myGrid.DataSource = myDataView;
bm = this.BindingContext[myDataView];
the data order in DataView and DataTable is different.
How can a read (change) the data in table using DataView?
Any idea?
Thanks a lot,
Ruslan
I have:
BindingManagerBase bm;
DataTable myTable;
DataView myDataView
DataGrid myGrid;
myDataView = myTable["tab"] // data in table exist
myDataView.Sort = "field1";
myGrid.DataSource = myDataView;
bm = this.BindingContext[myDataView];
the data order in DataView and DataTable is different.
How can a read (change) the data in table using DataView?
Any idea?
Thanks a lot,
Ruslan