BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
subGrid.ForceCurrentCellMoveTo = true;
subGrid.CurrentCell.MoveTo(1,1);
private void gridControl1_CurrentCellShowedDropDown(object sender, System.EventArgs e) { GridCurrentCell cc = this.gridControl1.CurrentCell; if(this.gridControl1[cc.RowIndex, cc.ColIndex].CellType == "GridADropCell") { GridA.Focus(); GridA.ForceCurrentCellMoveTo = true; GridA.CurrentCell.MoveTo(1,1); } }Without the focus call, the currentcell shows with a dotted border meaning the grid does not have focus.