Hi,
I want to take a text file of urls and then assign them to several button objects which in turn open an embedded web object
http://www.something.com
http://somethingelse.com
and so on...
I've done this so far by:
button1 = TextFile.ReadToString("C:\\url.txt");
url = String.Mid(button1, 0, -1);
Web.LoadURL("Web1", url);
This is great because it will load line 1 for button 1 but how do I move on to line 2 and load that url for button 2
I'm confused, any assistance will be greatly appreciated.
Many thanks
Rob

Reply With Quote
