Stoopid textbox question [Resolved]
I have a form and I would like the blinking cursor to automaiclly be in one of the text box so the user can just type once the form is open with out having to use the mouse to give focus to the textbox.
I tried in my form load event to put textbox.Focus but this does not do what I want.
Re: Stoopid textbox question
VB Code:
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.TextBox1.Select()
End Sub
try that ;)
Re: Stoopid textbox question
Your truely are the King of Kings. Works good :)
Re: Stoopid textbox question [Resolved]
nah....i just beat the next person to the answer LOL
i got lucky :blush: