blakeandsons
New member
- Joined
- Nov 11, 2013
- Messages
- 4
- Programming Experience
- Beginner
I am currently looking to code my first web browser/form filler application. So far I have the browser and a few form fields that are working.
At the moment I am only able to have it load 1 url but I need it to cycle through a .txt file with about 1200 different url's while form filling.
My question is how would I load from a .txt file instead of just the one designated url as I have working now?
Any help is appreciated.
At the moment I am only able to have it load 1 url but I need it to cycle through a .txt file with about 1200 different url's while form filling.
My question is how would I load from a .txt file instead of just the one designated url as I have working now?
VB.NET:
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
WebBrowser1.Navigate("https://login.yahoo.com/config/login_verify2?.intl=us&.src=ym")
End Sub
Any help is appreciated.