AD
Administrator
Syncfusion Team
November 17, 2004 03:10 PM UTC
Not sure it will work for this setup, but you can try:
this.grid.CurentCell.BeginEdit();
Or, maybe
this.grid.CurrentCell.Renderer.Control.Focus();
You would probably need to check for nulls.
AD
Administrator
Syncfusion Team
November 17, 2004 04:54 PM UTC
Thanks Clay. That will probably do it. Unfortunately, I''ve just discovered that NUnit Forms has no facility for me to pass it a Control object. It''s got a really screwed up architecture and wants a form and control name. Nor does it even store the actual control reference, so there''s no way to simply add a constuctor to pass in the control. Guess I''ve got some work to do. Thanks.
>Not sure it will work for this setup, but you can try:
>
>this.grid.CurentCell.BeginEdit();
>
>
>Or, maybe
>
>
>this.grid.CurrentCell.Renderer.Control.Focus();
>
>
>You would probably need to check for nulls.