Hi everyone, this should be easy however I don't know the answer since I am only a beginner in programming.
I have a webbrowser object on my
vb form and a button with the coding to load up a certain website which is:
webbrowser1.Navigate("[website]")
It works perfectly fine, the problem I am having is, I want the website fully loaded before it loads up another website. For example my code is:
webbrowser1.Navigate("[website]")
webbrowser1.Navigate("[a different website]")
What is happening is, its missing out the first one, and loading up the second one. I want it to load up the first website first, before it loads up the second website. Is there a way to do this?
I have tried readystate, but I might be doing it wrong so any coding could help. If I need to use timers, tell me how to use them and instructions too.
If you provide a solution you will get full stars!!
-- I have asked this question before but nobody has provided a answer that has worked.