G
Guest
What i am doing is pretty simple. I am writing a simple control that you
probably have seen on many websites. You have a phone number field ( 3
Textboxes ) if the size of the textbox text is = 3 move to the second text
box. My problem is: How do i tell my app to select the second text box?
Here is an example on what I have so far:
Private Sub txtPhone1_TextChanged(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles txtPhone1.TextChanged
If Len(txtPhone1.Text) = 3 Then
HELP!!!
End If
End Sub
probably have seen on many websites. You have a phone number field ( 3
Textboxes ) if the size of the textbox text is = 3 move to the second text
box. My problem is: How do i tell my app to select the second text box?
Here is an example on what I have so far:
Private Sub txtPhone1_TextChanged(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles txtPhone1.TextChanged
If Len(txtPhone1.Text) = 3 Then
HELP!!!
End If
End Sub