Been trying to set up a form that will call a webpage, wait for it to load and then call another page. The pages can take 10-15 mins to load.
From other posts I have tried
This seems to go on a perpetual loop as it runs for ages with nothing showing.
Any ideas where I am going wrong.
From other posts I have tried
Code:
Set IE = Me.WebBrowser
IE.Navigate "[URL unfurl="true"]http://www.google.co.uk"[/URL]
While IE.Busy
'Do nothing
Wend
While IE.Document.ReadyState <> "Complete"
'Do nothing
Wend
IE.Navigate "[URL unfurl="true"]http://www.yahoo.co.uk"[/URL]
While IE.Busy
'Do nothing
Wend
While IE.Document.ReadyState <> "Complete"
'Do nothing
Wend
Any ideas where I am going wrong.