Results 1 to 5 of 5

Thread: Open File Dialog Box question EASY!!

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jun 2000
    Posts
    25

    Wink


    When my file open dialog box opens, i want it to only display the files of default filter type. For instance, filter is set for dbf files so i only want to see dbf files in the box. How do i do this?

    thanks in advance

  2. #2
    Guest
    Here you go:

    Code:
    CommonDialog1.Filter = "DBF (*.dbf)|*.dbf"

  3. #3
    Guest
    Matthew, Don't use COMMDIALOGS.

    They take up a TON of MEMORY!!!

    VBWorld has a GREAT tutoral about using API, so .

  4. #4
    Guest
    That's what he's using though. Is he not?

  5. #5
    Guest
    Hmm...

    I guess it is.

    Code:
    CommonDialog1.Filter = "Database Files (*.dbf)|*.dbf"
    is a good idea if that is what he is using.

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