im opening a FolderBrowserDialog the following way:
FolderBrowserDialog fbd = new FolderBrowserDialog();
fbd.Description = desc;
fbd.SelectedPath = defaultPath;
fbd.ShowNewFolderButton = showNewFolderButton;
DialogResult result = fbd.ShowDialog();
if (result == System.Windows.Forms.DialogResult.OK)
return fbd.SelectedPath + @"\";
else
return "";
This works. But every time i select a new folder in this dialog the whole "Folder-Tree" scrolls down to the bottom so that the selected folder is at the bottom of the FolderBrowserDialog. That gets pretty annoying cuz i always have to scroll down again to select another folder...
Any solution for this?
Thx!