CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2002
    Location
    Massachusetts
    Posts
    26

    Listbox-esque file browsing...

    Hi - What I need to do is add a way to have a listbox file browser open so that users can select files to add to a list.

    If you have VC7 and go to "Find in Files", and then click the "..." to the right of "Look In" - This is basically what I need to create.

    Is there an ActiveX control to do this? Do you guys have any suggestions about how I should go about doing this?

    Thanks.

  2. #2
    Join Date
    Feb 2002
    Posts
    5,757
    That design is quite simple. One solution is a dialog window with some edit controls, buttons, tree control, and a list control.

    Kuphryn

  3. #3
    Join Date
    Aug 2002
    Location
    Massachusetts
    Posts
    26
    Yes, but I am talking about the actual Listbox browsing functionality. Is there some sort of built-in way to navigate directories and select files in a listbox-style control?

    Or do I have to implement it?

  4. #4
    Join Date
    Feb 2002
    Posts
    5,757
    Correct.

    You could implement your own design, which I recommend. Otherwise, check out CodeProject code section for examples.

    Kuphryn

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

Featured