Make WebBrowser1 navigate (x) times on a particular website

TastyTeo

Member
Joined
May 31, 2011
Messages
15
Programming Experience
1-3
VB.NET:
WebBrowser1.Navigate("http://" + TextBox2.Text + "/robbery/index/humanhunt/1")

How can i make this code execute the times that TextBox1.Text indicated?
It should be some kind of loop. but i want it to repeat this every 100 milliseconds


thanks
 
Use a Timer and call browsers Refresh method.
 
Keep count and stop the Timer then.
 
Back
Top