Display the directory name(is not file names) using openFileDialog

  • Thread starter Thread starter Dev
  • Start date Start date
D

Dev

Friends,
I want display the directory name(is not file names)
using openFileDialog controls.Is it possible? If so how do to this?
If anyone knows....Please help me...

Thnaks,
Dev
 
Hello,

Dev said:
I want display the directory name(is not file names)
using openFileDialog controls.Is it possible? If so how do to this?
If anyone knows....Please help me...

..NET 1.1:

System.Windows.Forms.FolderBrowserDialog

Note that there is a bug in Fx 1.1 that causes a really bad error when
using a path which is longer than ~128 characters. This occurs on
unicode systems only. Use the P/Invoke solutions mentioned below
instead.

..NET 1.0:

http://www.codeproject.com/cs/miscctrl/folderbrowser.asp
http://support.microsoft.com/?kbid=306285
http://www.gotdotnet.com/team/vb/FolderBrowser.exe
http://groups.google.com/groups?selm=q0JKzDbmCHA.2144@cpmsftngxa09

Regards,
Herfried K. Wagner
 
Back
Top