hey guys this code is not working
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Do Until X = TextBox6.Text
X = TextBox5.Text + 1
Label4.Text = X
Me.Refresh()
WebBrowser1.Document.GetElementById("subject").SetAttribute("value", TextBox3.Text)
WebBrowser1.Document.GetElementById("message").SetAttribute("value", RichTextBox1.Text)
WebBrowser1.Document.GetElementById("btnSubmit").InvokeMember("click")
WebBrowser1.Navigate("http://forum.ea.com/uk/pm/sendTo/" & X & ".page")
ReaderTimer.Interval = 5000 ' In thousands of seconds
Loop
End Sub
I need it to auto increase amount, also wait on page load each time. or even better just post http content so i dont need to load page. It crashes on run, if i take the auto increment out it runs fine once. but that dont need page load
Any help?