Windows Explorer (1 Viewer)

tjs206

Registered User.
Local time
Today, 18:49
Joined
Sep 25, 2000
Messages
37
Does anyone know how to open Windows Explorer programatically (VBA)?

Thank you.
 

dgm

Registered User.
Local time
Tomorrow, 03:49
Joined
Sep 5, 2002
Messages
146
Code:
Private Sub Command1_Click()
    Shell "C:\Windows\Explorer.exe", vbMaximizedFocus
End Sub
 

tjs206

Registered User.
Local time
Today, 18:49
Joined
Sep 25, 2000
Messages
37
Thank you.

What is the FIRE IN THE HOLE comment?
 

Users who are viewing this thread

Top Bottom