I have three textboxes that I would like to auto tab once the numbers have been entered but stop at the last set of numbers of course.
I saw one example where it autofocuses to textbox number 2 but I couldnt find another one that goes to number three.
I saw one example where it autofocuses to textbox number 2 but I couldnt find another one that goes to number three.
Code:
If TextBox1.Text.Length = TextBox1.MaxLength Then
TextBox2.Focus()
End If