Explorer-like file browser control?

J

Jack Black

Hi, all! Using VS.Net '03...

Is there an Explorer-like control in .Net? I see there's a
FileListBox and a DirListBox, but I really want something more
Explorer-like for users to browse with. An OpenFile dialog is not
what I'm looking for...

Any ideas? :)

Thanks!
Jack
 
R

Robby

You there is no Explorer-like control. However, it is really easy to make
one yourself. Create a user control and use a TreeView, Splitter and
ListView control. Then use System.IO objects like Directory, DirectoryInfo,
File and FileInfo. You can easily have one in about an hour. You may even
find one on the internet for free since it is not too difficult a control to
write.

--Robby
 

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