Set Focus to left of input mask

  • Thread starter Thread starter Guest
  • Start date Start date
How do you set the focus to the far left of an input mask in a Form text box?

Code the control's Enter event:
Me![ControlName].SelStart = 0

This will only work if you set focus to or tab into the control.
If you use the cursor to enter the control, wherever you place the
cursor is where it will start.
 
Back
Top