3

Possible Duplicate:
How to select multiple folder path usingt FolderBrowserDialog control in vb.net

I want to select many folders for performing some operations on them, like selecting many files with OpenFileDialog.

The problem is that I can't select multiple folders in time with FolderBrowseDialog.

What is the solution?

Community
  • 1
  • 1
1Programmer
  • 73
  • 3
  • 9
  • That's not really what it's for – kͩeͣmͮpͥ ͩ Mar 24 '11 at 13:53
  • 1
    FolderBrowserDialog sucks even in single selection , I can't imagine it doing multiple selection :P ... To be serious, unfortunately I guess you have to implement it yourself... – digEmAll Mar 24 '11 at 13:53
  • 1
    http://www.codeproject.com/KB/tree/treeviewexplorer.aspx And the closing of this as a duplicate is a little OTT - different languge and the linked question is not much of an answer. – CAD bloke Nov 23 '11 at 20:13

3 Answers3

3

Select it one by one. Or custom control: File Explorer using Treeview controller Here is what you need.

Don't forget to mark answer as correct if that helped you.

Sasha Reminnyi
  • 3,442
  • 2
  • 23
  • 27
3

That component doesn't allow multiple selections, sorry. You can, however, enable multiple selections in a TreeView to accomplish the task.

David
  • 208,112
  • 36
  • 198
  • 279
1

OpenFolderDialog, apparently does not support multiple item selection:

How to select multiple folder paths using FolderBrowserDialog control in VB.NET

Community
  • 1
  • 1
Grant Thomas
  • 44,454
  • 10
  • 85
  • 129