> Hello,
>
[quoted text clipped - 5 lines]
> window, but I was wondering if it would be possible to put all of this into a
> Visual Basic executible file.
You can open folders from a batch file. e.g.
START "C:\MY FOLDER1\"
START "C:\MY FOLDER2\"
START "C:\MY FOLDER3\"
C:
CD \Whatever

Signature
Paul
>Hello,
>
[quoted text clipped - 9 lines]
>asking in case it's easy to do and you know it off the top of your head, or
>could point me to a web page that shows how to do something similar.
Thanks to few beers i do feel a bit off the top of my head so
herewego..
dim ret as long
ret = ShellExecute(0,"explore",path1,vbnullstring,path1,1)
ret = ShellExecute(0,"explore",path2,vbnullstring,path2,1)
ret = ShellExecute(0,"explore",path3,vbnullstring,path3,1)
ret = ShellExecute 0,"open",environ$("comspec")," /p",cmdPath,1
That should do it, methinks. Replace path1,path2,path3 and cmdPath
with your paths. Also don't forget to include the ShellExecute
declaration.

Signature
Regards, Frank