I am trying to get the text when x charicters are inputed you can keep typing and the text automaticly starts on the next text box. Any help you can give me would be great!
Printable View
I am trying to get the text when x charicters are inputed you can keep typing and the text automaticly starts on the next text box. Any help you can give me would be great!
You could try something likeBare in mind, you could hit the limit of one textbox in the middle of a word.VB Code:
Private Sub Text1_Change() If Len(Text1.Text) > 25 Then Text2.SetFocus End Sub
This fixed it THANKS!!!