Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
( _
ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long _
) _
As Long
Private Declare Function GetDesktopWindow Lib "user32" () As Long
Private Sub CommandButton1_Click()
Dim lRtn As Long
Dim hDC As Long
hDC = GetDesktopWindow()
lRtn = ShellExecute(hDC, "Open", "C:\WINDOWS", "", "", 1)
End Sub