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

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
 
H

Herfried K. Wagner

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top