文件和文件夹选择器
我想制作一个执行以下操作的程序: 1)允许用户选择一堆文件 2) 允许用户选择将文件复制到的文件夹 3)将所有文件复制到指定的文件夹
中实际上,程序需要做的事情远不止这些,但这已经了解了我想要的内容。
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 into
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要执行您想要的操作,您将需要使用 VB 提供的一些通用对话框。要访问这些内容,您需要添加对它们的引用,然后将它们添加到您的表单中。
这是一篇文章和示例源代码,更详细地演示了这一点:
http://www.vb6.us/tutorials/common-dialogs-vb-tutorial
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