help me
C#
3
Posts
3
Posters
0
Views
1
Watching
-
How to open a dialog where I can browse the files
-
How to open a dialog where I can browse the files
-
How to open a dialog where I can browse the files
Hello Beside what Mikone has already said, I suggest the following if you want to implement file browsing in your Application: 1- You might want to take a look at
FolderBrowseDialog
class. 2- Populate a TreeView or a ListView with folders using methods provided inDirectory
class 3- If you want to implement Windows Explorer itself in your application, you can make a WebBrowser control, and set the URL to @"file:\\\C:\" to browse C: drive.Regards:rose: