Hey Guys,
How do I get my cusor to automaticaly go to a specific textbox when I load a form?
Printable View
Hey Guys,
How do I get my cusor to automaticaly go to a specific textbox when I load a form?
You need to set the focus to that txtbox as part of the Initialize procedure for the form.
VB Code:
Private Sub UserForm_Initialize() Me.TextBox2.SetFocus End Sub