Reputation:
I need to select 2 file for open them; I want to do that by only one window, so I tryed to build a custom dialog, but I lost drag&drop, rename etc explorer built-in function. Is there a way like show 2 openfiledialog in one window?
Upvotes: 0
Views: 63
Reputation:
Base on a my search I end up that the solution suggested my jmcilhinney is the best compromise between time/effort.
Upvotes: 0
Reputation: 4940
Set the MultiSelect
property of the OpenFileDialog object to True
.
Upvotes: 2