Only this weekend I need it. I looked and looked, but could not find it. I enjoyed writing this based on this article in KB, and some other things. Here you go. FolderBrowserDialogEx
Full source code. Free. License MS-Public.

Code for use:
var dlg1 = new Ionic.Utils.FolderBrowserDialogEx(); dlg1.Description = "Select a folder to extract to:"; dlg1.ShowNewFolderButton = true; dlg1.ShowEditBox = true; //dlg1.NewStyle = false; dlg1.SelectedPath = txtExtractDirectory.Text; dlg1.ShowFullPathInEditBox = true; dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; // Show the FolderBrowserDialog. DialogResult result = dlg1.ShowDialog(); if (result == DialogResult.OK) { txtExtractDirectory.Text = dlg1.SelectedPath; }
Features: shows editbox, shows the full path in the edit field. It can be used to view printers or computers, as well as files + folders or just folders.
Cheeso Feb 24 '09 at 6:49 2009-02-24 06:49
source share