|
-
Jun 15th, 2005, 03:32 PM
#1
Thread Starter
Addicted Member
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.
Last edited by Porsche944; Jun 15th, 2005 at 03:50 PM.
-
Jun 15th, 2005, 03:41 PM
#2
Frenzied Member
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
-
Jun 15th, 2005, 03:49 PM
#3
Thread Starter
Addicted Member
Re: Stoopid textbox question
Your truely are the King of Kings. Works good
-
Jun 15th, 2005, 03:55 PM
#4
Frenzied Member
Re: Stoopid textbox question [Resolved]
nah....i just beat the next person to the answer LOL
i got lucky
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|