Zvi Twersky
Zvi Twersky

Reputation: 439

VBNET browse for folder dialog type

When adding a FolderBrowserDialog class in VBNET, this is the type of browse window you get:

enter image description here

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)?

enter image description here

Upvotes: 0

Views: 341

Answers (1)

Hadi
Hadi

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

Related Questions