Hi...
I have a script that opens an IE window using:
Set objIE = CreateObject("InternetExplorer.Application")
And then I'm doing:
intHWND = objIE.HWND
To get the window handle.
Then, in another part of the script, I want to check that the window
hasn't been closed before trying to modify its properties. Is there
some sort of dream function that works something like:
boolIEWindowOpen = GetWindowHandle(intHWND)
...that'll return true or false if a window with the supplied handle is
open or closed?
Here's hoping!
//Plankmeister