AD
Administrator
Syncfusion Team
November 14, 2002 01:09 PM UTC
You might try resetting the currenty cell to 0,0 before you set a new datasource (from a change in your combobox).
this.datagrid1.CurrentCell = new DataGridCell(0,0);
//now set the new datasource
this.dataGrid1.DataSource = newDataSource;