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.gridControl1.ActivateCurrentCellBehavior = GridCellActivateAction.SetCurrent;
this.gridControl1.CurrentCellControlGotFocus +=new ControlEventHandler(gridControl1_CurrentCellControlGotFocus);
private void gridControl1_CurrentCellControlGotFocus(object sender, ControlEventArgs e)
{
if(e.Control is GridMaskedEditBox)
{
GridMaskedEditBox mt = (GridMaskedEditBox) e.Control;
mt.SelectionStart = 1;
}
}
Best regards,
Jay N