[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
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
Re: How can i click on button in vb
Just so you know, you don't have to host your attachments on GeoCities. Just use the Manage Attachments button you will see below this frame.
Re: How can i click on button in vb
thanks alot :)
its working