File and Folder Selector
I want to make a program that does the following: 1) Allow users to select a bunch of files 2) Allow users to select a folder to copy the files in开发者_开发问答to 3) Copy all the files into the specified folder
In reality the program needs to do much more than this but that gets the idea across of what I want.
To Do what you want you will need to use some of the Common Dialogs that VB provides. To get to these you will need to add a reference to them and then add them to your form.
Here is an article and sample source code that demonstrates this in more detail: http://www.vb6.us/tutorials/common-dialogs-vb-tutorial
精彩评论