G
gimme_this_gimme_that
Events are designated in the Object Dictionary by a lightening icon.
Is there a way to tell if an Event has fired?
Example.
Check the "Microsoft Internet Controls" reference library and check
out the WebBrowser object - it has an event called DownloadComplete.
So if I have:
Set IE = CreateObject("InternetExplorer.Application")
' Same as Set IE = new WebBrowser()
IE.Visible = True
IE.navigate "http://www.mysite.com"
Can I see if DowloadComplete fired?
Can I attach code that executes when DownloadComplete fires?
BTW, I see there is a Busy property which can be used to see when the
download is complete - but I'd still like to learn about capturing
events.
Thanks.
Is there a way to tell if an Event has fired?
Example.
Check the "Microsoft Internet Controls" reference library and check
out the WebBrowser object - it has an event called DownloadComplete.
So if I have:
Set IE = CreateObject("InternetExplorer.Application")
' Same as Set IE = new WebBrowser()
IE.Visible = True
IE.navigate "http://www.mysite.com"
Can I see if DowloadComplete fired?
Can I attach code that executes when DownloadComplete fires?
BTW, I see there is a Busy property which can be used to see when the
download is complete - but I'd still like to learn about capturing
events.
Thanks.