Is there any way to set the initial directory of a folder browser dialog to a non-special folder? This is what I\'m currently using
fdbLocation.RootFolder = Envir
Set the SelectedPath property before you call ShowDialog ...
folderBrowserDialog1.SelectedPath = @"c:\temp\"; folderBrowserDialog1.ShowDialog();
Will start them at C:\Temp