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
Just set the SelectedPath property before calling ShowDialog.
fdbLocation.SelectedPath = myFolder;