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
Private Sub UserForm_Initialize() Me.TextBox2.SetFocus End Sub
Declan Don't forget to mark your Thread as resolved. Take a moment to rate posts that you think are helpful
Forum Rules