Results 1 to 2 of 2

Thread: Explorer Window

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2002
    Location
    England
    Posts
    9

    Unhappy Explorer Window

    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

  2. #2
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390
    for one type: Create a New form with a DRIVE list DIR Listbox and a FILE listbox

    then link them together....


    VB Code:
    1. Private Sub Drive1_Change()
    2. DIR1.Path = Drive1.drive
    3. End Sub
    4.  
    5. Private Sub Dir1_Change()
    6. File1.Path = DIR1.Path
    7. End Sub

    but to make it like explorer you'll need a treeview and hmm... maybe a RichTextBox? that one would be hard...
    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width