gordie
06-19-2000, 05:17 PM
Is there any way to make an input mask fill from right to left? I am using a phone number mask and dont want to have to space through the area code to put in the 7 digits that the local numbers are. Is there a way that I can start it to fill in the 7 digits then fill in the area code last if I need to enter it?
R. Hicks
06-19-2000, 08:09 PM
Maybe this will help you. The following code will make the curser appear in the first digit past the area code entry when you tab into it. Use the On Got Focus event of the phone number txtbox:
Private Sub PhoneNum_GotFocus()
Me.ActiveControl.SelStart = 6
End Sub
Change "PhonNum" the the actual name of your control.
HTH
RDH