Folder Browser
I am trying to make an application that has a folder browser on the side, such as the FolderBrowserDialog but I want it to always be visible. I want to just be able to select a folder and then have it pull some stuff up in a seperate panel.
Is there something built in that I can use? How would I go about doing something like this if not?
YousefPosted Apr 14, 2007, 10:05 PM
System.IO.
DirectoryInfo dirInfo = new System.IO.DirectoryInfo();DirectoryInfo[] directories= dirInfo.GetDirectories();
Then if I'm not mistaken, you'd probably be able to databind the TreeControl to the returned list.
milind khirePosted Apr 13, 2007, 9:25 AM