You can use the AfterCellActivate event and write this code
void grid_AfterCellActivate(object sender, EventArgs e) { if (grid.ActiveCell != null && grid.ActiveCell.Column.Index == 1 && grid.ActiveCell.Row.Index == 1) { grid.ActiveCell = grid.Rows[1].Cells[2];
Steve source share