-
hi
I basically want to browse the net but I want to load
the web pages complete.
when I use sleep then my total system stands and I have to kill the Process
Public WithEvents IE As InternetExplorer
IE.Visible = True
dis = 1
IE.Navigate "http://www.onlinekosten.de"
sleep (2000)
dis = 2
IE.Navigate "http://www.heidelberg.de"
sleep (2000)
Anybody knows a lsolution ?
thx alex
-
Why do you need any Sleep function when you already have a WebBrowser control that has that functionality:
Code:
WebBrowser1.Navigate "www.vb-world.net"
Do Until WebBrowser1.ReadyState = READYSTATE_COMPLETE
Debug.Print WebBrowser1.ReadyState
DoEvents
Loop
MsgBox "Page has been loaded."
-
hi
I need it because I am an Newbie :)
But thx to your Help I am getting better.
thx