Reputation: 439
When adding a FolderBrowserDialog class in VBNET, this is the type of browse window you get:
How can I get THIS type of browse window (so it's easier to just paste in a path instead of having to twirl lots of arrows)?
Upvotes: 0
Views: 341
Reputation: 37348
You have to use OpenFileDialog instead of folderbrowerDialog. Read more about it https://msdn.microsoft.com/en-us/library/system.windows.forms.openfiledialog(v=vs.110).aspx
Read this Topic for opening directories using openFileDialog
Upvotes: 1