How do you find out if explorer is open using API's?
I've tried using GetObject but I want to avoid using this because I'd need to install an ActiveX on the machine I'm installing to, which I don't want to do.
Thanks in advance
Lucy :)
Printable View
How do you find out if explorer is open using API's?
I've tried using GetObject but I want to avoid using this because I'd need to install an ActiveX on the machine I'm installing to, which I don't want to do.
Thanks in advance
Lucy :)
Windows Explorer or Internet Explorer ?
Well, doesn't matter. :)Quote:
Originally posted by plenderj
Windows Explorer or Internet Explorer ?
VB Code:
'Add a [b]REFERENCE[/b] to Microsoft Internet Control, [b]NOT[/b] 'Add components Dim Sws As New ShDocVW.ShellWindows If Sws.Count Then MsgBox "An explorer window is running."
Yes... er... I was about to say that.... ;)Quote:
Originally posted by jian2587
[/B]VB Code:
'Add a [b]REFERENCE<b>Well, doesn't matter. :) </b> to Microsoft Internet Control, [b]NOT[/b] 'Add components Dim Sws As New ShDocVW.ShellWindows If Sws.Count Then MsgBox "An explorer window is running."