Hi
Beginner scripter grappling with the idiosyncrasies of vbscript.
I have seen how the time to load a web page in scripts incorporating IE
Automation can be handled in scripts via loops such as:
1) While IE.ReadyState <> READYSTATE_COMPLETE : Wscript.Sleep tDoEvents
Wend
and
2) Do While objIE.Busy
WScript.Sleep(1000)
Loop
However, I am just now putting the finishing touches to a small script
(Macro) to Print a (Printer) Test Page which does not at all involve
Internet Explorer.
Nevertheless, because of the time to "load" the pages in the various
stages (16 in all) in the script, I have had to insert Wscript.Sleep
commands of arbitrary length (usually 1-3 seconds) between all of the
stages.
Is there anything equivalent to the Do While objIE.Busy....Loop which I
can use while working (completely offline) with a Windows Explorer
application?
TIA
Paul