I have been trying to make a program for my dad i would like it to have
buttons on it that bring him to folders on his harddrive because he has
so many files and folders it get's to be a pain to dig through them to
find the folder/file he wants
How would i make a program that would have buttons that you could click
on to open a specific folder in either a new window or in the program
it self
What coding would i have to put in when I double click the button in VBE
If you'd like you could make up a file path because it might help me understand better
Thank you for your help
Packerfan

Help on designing a program with short cuts to files
gadams00
For example, you want to open "My Document"
System.Diagnostics.Process.Start(
My.Computer.FileSystem.SpecialDirectories.MyDocuments)DarkDream
System.Diagnostics.Process.Start(
"c:\")