Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 930527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:20:59+00:00 2026-05-15T20:20:59+00:00

The Excel 2003 API has a GetSaveAsFilename method that pops up the Save As

  • 0

The Excel 2003 API has a GetSaveAsFilename method that pops up the Save As dialog. This takes in various parameters, including the file type (xls, txt, csv,…), something like the following:

GetSaveAsFilename(Missing.Value,
                  "Microsoft Office Excel Workbook (*.xls), *.xls",
                  1,
                  Missing.Value,
                  Missing.Value);

My issue is, I see only “*.xls” in the dialog File type dropdown. If I skip the file type part (the 2nd parameter), I see just “All Files (*.*)” in it. How can I get to see the normal list that contains all possible file types without creating a long string of all file types and passing it to the method?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T20:21:00+00:00Added an answer on May 15, 2026 at 8:21 pm

    Here’s a link that may be able to help. The relevant post is the third item. It’s not an ideal solution (which would be some constant), but it could be a way for you to programmatically loop through the available filters and build up a string to use in GetSaveAsFilename.

    Here’s the relevant part of the code:

    Sub Main()
    
    'Declare a variable as a FileDialogFilters collection.
    Dim fdfs As FileDialogFilters
    
    'Declare a variable as a FileDialogFilter object.
    Dim fdf As FileDialogFilter
    
    'Set the FileDialogFilters collection variable to
    'the FileDialogFilters collection of the SaveAs dialog box.
    Set fdfs = Application.FileDialog(msoFileDialogSaveAs).Filters
    
    'Iterate through the description and extensions of each
    'default filter in the SaveAs dialog box.
    For Each fdf In fdfs
    
        'Display the description of filters that include
        Debug.Print fdf.Description & " (" & fdf.Extensions & ")," & fdf.Extensions
    
    Next fdf
    
    End Sub
    

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.