hello,
Im having a hard time with a website, im trying to submit the data
with enter or clicking the submit button, but I can get it done.
im able to put the data into the yext fields this is what i have
Call WebBrowser1.Navigate(New System.Uri("
http://www.myspacetrain.com/join2.php"))
For i = 1 To 100
Sleep((100))
System.Windows.Forms.Appli
cation.DoE
vents()
Next
With WebBrowser1.Document.DomDo
cument
txtOne = .GetElementsByName("friend
ID")(0)
txtTwo = .GetElementsByName("name")
(0)
txtOne.Value = "12345678"
txtTwo.Value = "hello"
.Forms(0).submit() ' this is not working right
End With
For i = 1 To 100
Sleep((100))
System.Windows.Forms.Appli
cation.DoE
vents()
Next