How can I check when a web page has been fully downloaded, ie DONE. I use a simple URL launcher in my program but I need to detect when a page has finished downloading, or maybe time out.
Printable View
How can I check when a web page has been fully downloaded, ie DONE. I use a simple URL launcher in my program but I need to detect when a page has finished downloading, or maybe time out.
If you are using a ref to ms internet cntrls, you can dim withevents and use the documentcomplete event. It seems to consider each frame a document and may fire many times before the page is actually done, so you must account for that. Any help???
for frames, in the DocumentComplete event you can:
if not ie.busy then
'complete
end if
[Edited by _bman_ on 04-21-2000 at 09:43 PM]