ok i need to know how to make the webbrowser control goto a certian website then when its at that website stay there untill the user hits a button on the webbrowser control like for example

if i load the list with usernames and want the webbrowser to goto their webpage then wait for me to hit a certian button on the webbrowser then change to the next webpage and so on

i can get it to goto the webpage using a timer but how do i make it stop at the page and wait untill a certian button is pressed?


i know i use this to goto the webpage using the listbox

Code:
Browser.Navigate ("http://WebSiteName.com" & List1.Text)
but i i need it to goto the webpage and not scroll to the nextpage untill im finish

this is what i have so far it is in a timer

Code:
Browser.Navigate ("http://WebSiteName.com" & List1.Text)
If Browser.LocationURL = ("http://WebSiteName.com" & List1.Text) Then
List1.ListIndex = List1.ListIndex + 1
End If