Hi,
welcome to UA forums.
If you want to hardcode the path then use:
Dim stAppName As String
stAppName = "C:\WINNT\explorer.exe c:\My Music"
Call Shell(stAppName, 1)
You can change the number at the end of the syntax to any of the one you want:
1 = open normal
2 = open minimized
3 = open maximized
Obviously you will need to change the directory of where your explorer.exe is located on Win2000 it is the above example!
If you want to dynamically retrieve the My Music folder of the user logged in then check this
earlier discussion.
You might also find these helpful:
01 02 HTH
Good luck