What code can I use to display a window containing the contents of the CDROM or another folder. How can I make the window either explorer style or standard style?
Thanks
Printable View
What code can I use to display a window containing the contents of the CDROM or another folder. How can I make the window either explorer style or standard style?
Thanks
for one type: Create a New form with a DRIVE list DIR Listbox and a FILE listbox
then link them together....
VB Code:
Private Sub Drive1_Change() DIR1.Path = Drive1.drive End Sub Private Sub Dir1_Change() File1.Path = DIR1.Path End Sub
but to make it like explorer you'll need a treeview and hmm... maybe a RichTextBox? that one would be hard...