I know how to browse folder with dialog. But when I use bellow code:
Dim FBrowserDialog As New FolderBrowserDialog()
FBrowserDialog.Description = "Get Folder"
FBrowserDialog.RootFolder = Environment.SpecialFolder.MyComputer
FBrowserDialog.ShowNewFolderButton = True
If FBrowserDialog.ShowDialog() = DialogResult.OK Then
'bla bla bla
End If
I get dialog like this:
But I want like this:
I don't have any idea how to get like this. Any kind of help will be appreciated.
I am using Visual Studio 2010.