New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
this.gridGroupingControl1.TableControl.Focus();
this.gridGroupingControl1.TableControl.CurrentCell.BeginEdit();
TextBox tb = this.gridGroupingControl1.TableControl.CurrentCell.Renderer.Control as TextBox;
if(tb != null)
tb.SelectAll();
The last 2 lines select all the text. If you just want the cursor at the beginning of the text, you can omit those lines.