|
-
Jan 5th, 2002, 08:15 PM
#1
Thread Starter
New Member
How do I launch explorer from my Visual Basic application ?
I can launch the explorer using the following command:
Public Function StartExplorer(Path As String) As Long
Dim Scr_hDC As Long
Scr_hDC = GetDesktopWindow()
StartExplorer = ShellExecute(Scr_hDC, "Open", Path, _
"", "C:\", SW_SHOWNORMAL)
End Function
where Path is C:
But how do I get the sidewindow which lists all the folders to appear ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|