kevinh2320
Board Regular
- Joined
- May 13, 2016
- Messages
- 61
I'm looking for VBA code that will open Windows File Explorer at the Downloads folder. I have the code below that will open the Documents folder and I've been able to modify it to open other locations but, can't figure out how to open the Downloads folder.
Private Sub Command1_Click()
Dim Foldername As String
Foldername = "\\server\Instructions\"
Shell "C:\WINDOWS\explorer.exe """ & "Documents" & "", vbNormalFocus
End Sub
Thanks for any help.
Private Sub Command1_Click()
Dim Foldername As String
Foldername = "\\server\Instructions\"
Shell "C:\WINDOWS\explorer.exe """ & "Documents" & "", vbNormalFocus
End Sub
Thanks for any help.