AD
Administrator
Syncfusion Team
January 28, 2004 02:15 PM UTC
In your formload, try adding code like
this.grid.ForceCurrentCellMoveTo = true;
this.grid.CurrentCell.MoveTo(1,1);// or some other cell
If the grid is not the active control, you might also want to set this.ActiveControl = this.grid if you want it to be the active one.
JL
Jose Luis Melo
January 28, 2004 02:59 PM UTC
Thats it...
Thanks a lot.