Results 1 to 4 of 4

Thread: Stoopid textbox question [Resolved]

  1. #1

    Thread Starter
    Addicted Member Porsche944's Avatar
    Join Date
    Apr 2005
    Location
    Ann Arbor
    Posts
    182

    Resolved 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.

  2. #2
    Frenzied Member
    Join Date
    Nov 2003
    Posts
    1,489

    Re: Stoopid textbox question

    VB Code:
    1. Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
    2.         Me.TextBox1.Select()
    3.  
    4.     End Sub
    try that

  3. #3

    Thread Starter
    Addicted Member Porsche944's Avatar
    Join Date
    Apr 2005
    Location
    Ann Arbor
    Posts
    182

    Talking Re: Stoopid textbox question

    Your truely are the King of Kings. Works good

  4. #4
    Frenzied Member
    Join Date
    Nov 2003
    Posts
    1,489

    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
  •  



Click Here to Expand Forum to Full Width