View Single Post
Old 11-05-2004, 10:39 AM   #2 (permalink)
tinomen
Upright
 
Question 1: Create an AfterUpdate event for the first textfield and use the Right function. Something like this:

Code:
Private Sub Text1_AfterUpdate()
    Text2.Text = Right(Text1.Text, 6)
End Sub
Question 2: Use the Input Mask property. It can limit characters and type of characters. The appropriate help reference can be found under Valid input mask characters
tinomen is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54