i think, if you remove the line Me.Hide in the load event, p`robably you have the solution. remember, in the load event you execute the code for LOAD and not for SHOW the form, if you call an event who refers to the form, it will be visible.
you can try use the Validate event for each textbox, and need a boolean variable to enable the command
Set the TabStop property for the textboxes to True and the TabIndex property:
Private Form_Load()
Text1.TabIndex=0
Text2.TabIndex=1
Text3.TabIndex=2
End Sub
Private Sub...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.