The following 3 macros do the following.
1st macro . . . When the button is clicked for this macro, Windows Explorer is opened and the folder MyMenuFiles is selected. Works Fine.
2nd macro . . . When this button is clicked, the windows explorer opens with My Documents selected. Works Fine.
3rd macro . . . THIS IS THE PROBLEM ONE.
When this button is clicked, windows explorer opens, with the C:\ drive selected. I want My Computer selected.
Sub WindowsExplorer()
Shell "Explorer.exe /e,c:\MyMenuFiles", vbNormalFocus
End Sub
Sub MyDocs()
Shell "Explorer.exe /e,c:\Documents and Settings\default\My Documents", vbNormalFocus
End Sub
Sub MyComputer()
Shell "Explorer.exe /e,c:\", 1 'vbNormalFocus '
End Sub
Bookmarks