hello,
this seems simple but i can't figure it out. How do I set focus on a textbox when the form is brought up?
Please Help
thanks in advance
trip85
Printable View
hello,
this seems simple but i can't figure it out. How do I set focus on a textbox when the form is brought up?
Please Help
thanks in advance
trip85
Try this:
Code:Private Sub Form_Activate()
Text1.SetFocus
End Sub
thanks megatron,
my brain finally sarting working and i figured out that i had to set the focus to the text box within my menu command.
thanks again for replying.
trip85:D