G Guest May 13, 2006 #1 How do you set the focus to the far left of an input mask in a Form text box?
F fredg May 13, 2006 #2 How do you set the focus to the far left of an input mask in a Form text box? Click to expand... 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.
How do you set the focus to the far left of an input mask in a Form text box? Click to expand... 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.