T
Tony Lin
What's the best way to provide users with a means to select a folder?
VS .NET version 1.1, has introduced a FolderBrowserDialog control, that at
first looks promising. However, in using it, I found two serious
deficiencies that make this a somewhat unattractive choice.
First, the initial folder can only be set by the RootFolder property, which
accepts an enumerated list of predefined folders such as Favorites, MyMusic,
ProgramFiles, etc. Since this is not a string property, you have no way to
set this to your own self-defined path. The best I can do is to have my
users start at MyComputers, but they are going to have a lengthy navigation
before they get to the folder they want.
Second, the FolderBrowserDialog has no up folder button, so if you make a
mistake in the lengthy navigation process, you have to cancel out of the
dialog window and start again!
The FolderBrowserDialog control seems promising in concept, but its
implementation makes this only about 50% useful.
I have considered using the OpenFileDialog control to select a folder but
this is not really suitable for folder selection.
Any suggestions?
Tony Lin
Fremont, CA
VS .NET version 1.1, has introduced a FolderBrowserDialog control, that at
first looks promising. However, in using it, I found two serious
deficiencies that make this a somewhat unattractive choice.
First, the initial folder can only be set by the RootFolder property, which
accepts an enumerated list of predefined folders such as Favorites, MyMusic,
ProgramFiles, etc. Since this is not a string property, you have no way to
set this to your own self-defined path. The best I can do is to have my
users start at MyComputers, but they are going to have a lengthy navigation
before they get to the folder they want.
Second, the FolderBrowserDialog has no up folder button, so if you make a
mistake in the lengthy navigation process, you have to cancel out of the
dialog window and start again!
The FolderBrowserDialog control seems promising in concept, but its
implementation makes this only about 50% useful.
I have considered using the OpenFileDialog control to select a folder but
this is not really suitable for folder selection.
Any suggestions?
Tony Lin
Fremont, CA