hi all.. me again
I am so close with this one.. and i know its simple, but i am a n00b.
Here is the code I have so far...
I cant get the form to wait untill the page is loaded to start trying out the form args..
anyone know a simple way to do this?
Thanks in advance!!
Thank you!!!
Mike Kovacic
I am so close with this one.. and i know its simple, but i am a n00b.
Here is the code I have so far...
Code:
Public Class Form1
Private Sub submit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles submit.Click
WebBrowser1.Navigate("http:my address")
status.Text = "LOADING PAGE"
'this is where i want to put a pause so the form can load and change the status to "FILLING OUT FORM"
With WebBrowser1
WebBrowser1.Document.defaultformname.umxusernametochangepwd.value = "mkovacic"
'Document.defaultformname.submit()
' status.Text = "FORM SUBMITTED"
End With
End Sub
End Class
I cant get the form to wait untill the page is loaded to start trying out the form args..
anyone know a simple way to do this?
Thanks in advance!!
Thank you!!!
Mike Kovacic