Results 1 to 4 of 4

Thread: [RESOLVED] How can i click on button in vb

  1. #1

    Thread Starter
    Banned
    Join Date
    Mar 2008
    Posts
    24

    Resolved [RESOLVED] How can i click on button in vb

    here is project file..
    its wont workin i dont know why i have been try.. but its
    if anyone know how can i fix pls tell me thanks

    here code html

    Code:
    <INPUT class=button title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accessKey=s tabIndex=104 type=submit value="Log in">
    http://www.geocities.com/missmaria17/Button.zip
    Last edited by Hack; Apr 21st, 2008 at 09:12 AM. Reason: Added RESOLVED to thread title and green resolve checkmark

  2. #2
    Fanatic Member
    Join Date
    Jun 2006
    Posts
    615

    Re: How can i click on button in vb

    Code:
    Private Sub Command1_Click()
    WebBrowser1.Document.All.Item("vb_login_username").Value = "username here"
    WebBrowser1.Document.All.Item("vb_login_password").Value = "password here"
    WebBrowser1.Document.Forms(0).submit
    End Sub
    
    Private Sub Form_Load()
    WebBrowser1.Navigate ("http://www.mombu.com/php/")
    End Sub
    There you go, that should help
    If ive helped, RATE my post.

    If your thread is solved, and you got your answer, mark this thread Resolved.

    There is no other forum like VBFORUMS.

  3. #3

  4. #4

    Thread Starter
    Banned
    Join Date
    Mar 2008
    Posts
    24

    Re: How can i click on button in vb

    thanks alot
    its working

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