Is there any opendirectory dialog box?

  • Thread starter Thread starter AVL
  • Start date Start date
A

AVL

Just like the openfile dialog box or savefile dialog box,
is there any way to select only the folder name?
 
Hi,

..NET 1.1 has a native BrowseForFolderDialog (or whatever it is called)
control similar to the OpenFileDialog.

With .NET 1.0 you should use the Shell COM objects through COM interop (or
just P/Invoke the SHBrowseForFolder API function).
 
Back
Top