Input Mask

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've used the following input mask on a text box control 99999999999;;" " .
The only problem is; when you click onto the control with your mouse, the
cursor doesn't goto the start of the line.

Is there any way of doing this via code?
Glenn
 
Hi Glenn,

You can place
Me.controlName.SelStart = 0
into an appropriate event for the control, On_Click, Got_Focus, etc.

HTH
Steve C
 
Back
Top