AD
Administrator
Syncfusion Team
November 24, 2004 10:17 PM UTC
The default behavior is for the focus to go to the last cell that was current when the grid gets focus. Initially, if there is no current cell, the focus goes to cell 0,0 which is what you are seeing.
One way around this is to set the current cell in formload. This way when the user tabs into the grid, the focus will go to that cell.
this.gridControl1.CurrentCell.MoveTo(1,1);
TO
Ted Osberg
November 29, 2004 10:31 AM UTC
You mean in the ''Load'' event of the form?
TO
Ted Osberg
November 29, 2004 10:33 AM UTC
I got it. No need to reply.
>You mean in the ''Load'' event of the form?