tags:

views:

50

answers:

3

Possible Duplicate: Embedding a File Explorer instance in a WinForms app form

I want a windows explorer style control on my form so i can browse directories for files, and drag them into another section of my form, ideally with filters (eg *.mp3 etc).

I can't find anything that will do exactly as I want. I have found this:

http://hypercoder.com/?page%5Fid=3

I have made the drag and drop work but with no documentation or examples I cannot work out how to double-click into directories in the file viewer and automatically update the tree.

It seems that this type of control must be used all of the time! Does anybody know where I can find something that will work?

TIA

+1  A: 

C# .NET 2009

Should have searched stack overflow first. Just found this:

http://gong-shell.sourceforge.net/

and ran a test it looks perfect!

Dave
A: 

How about this, a C# File browser, that works just like Windows Explorer.

Hope this helps, Best regards, Tom.

tommieb75
looks good as well i will experiment with both. Thank you!
Dave
@Dave: Great! Why the downvote? LOL! Happy new year to whoever downvoted this! :P
tommieb75
it wasn't me! ;)
Dave
A: 

Doesn't Winodws 7 provide you with one? WindowsAPI Code Pack also give you one- that works exactly the same way as Windows Explorer, looks the same, accepts files and folders from external resources. Microsoft made it, no doubt it is really good.
Problem - I THINK it only works on Windows 7...Thumbs down :(

Anways, heres the site: http://code.msdn.microsoft.com/WindowsAPICodePack Enjoy!

Coder