|
-
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 ?
-
Jan 5th, 2002, 08:17 PM
#2
The picture isn't missing
Shell "explorer.exe /n,/e,C:\", vbNormalFocus
does the same thing but no API
Remember, if someone's post was not helpful, you can always rate their post negatively  .
-
Jan 5th, 2002, 08:25 PM
#3
Thread Starter
New Member
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
|