To make the first cell of the first row active:
this.gridControl1.CurrentCell = this.gridControl1.DataRows[0].Cells[0];
If the gridControl1 is not the active control, you will have to make it active using:
this.gridControl1.Focus();
Imported from legacy forums. Posted by Ghislain (had 1372 views)