XL: How to Display the Open and Save As Dialog Boxes

ID: Q139723


The information in this article applies to:
  • Microsoft Excel for Windows, versions 5.0, 5.0c
  • Microsoft Excel for Windows NT, version 5.0
  • Microsoft Excel for Windows 95, versions 7.0, 7.0a
  • Microsoft Excel 97 for Windows
  • Microsoft Excel for the Macintosh, versions 5.0, 5.0a
  • Microsoft Excel for the Power Macintosh, versions 5.0, 5.0a
  • Microsoft Excel 98 Macintosh Edition


SUMMARY

When you use Microsoft Excel, you may want to display the Open or the Save As dialog boxes using Microsoft Visual Basic for Applications procedures. This article explains several ways to accomplish this task.

Note that the Open and Close methods do not display these dialog boxes.


MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp

Method 1

This Visual Basic code uses the xlDialogOpen and xlDialogSaveAs constants to display the dialog.

To open a file:

   Application.Dialogs(xlDialogOpen).Show 
To open a file named "myacct.xls" in the "c:\personal" directory:

   Application.Dialogs(xlDialogOpen).Show _

      ("c:\personal\myacct.xls") 
To save a file:

   Application.Dialogs(xlDialogSaveAs).Show 
To save a file in the "c:\public" directory named "acct.xls":

   Application.Dialogs(xlDialogSaveAs).Show _

      ("c:\public\acct.xls") 

Method 2

Use the GetOpenFilename and GetSaveAsFilename methods to retrieve the file name in conjunction with the Open or Close methods.

To open a file:

   Workbooks.Open filename:=Application.GetOpenFilename 
To save the active workbook:

   Activeworkbook.SaveAs filename:=Application.GetSaveAsFilename 

Method 3

Use the Microsoft Excel 4.0 macro language equivalents to display the dialog boxes.

To open a file:

   Application.ExecuteExcel4Macro("OPEN?()") 
To save a file:

   Application.ExecuteExcel4Macro("SAVE.AS?()") 
For additional information, please see the following articles in the Microsoft Knowledge Base:
Q122507 MXL5: Extension Overrides Default Directory Setting

Q104581 Macro to Change Default *.XL* to *.* in Open Dialog Box


REFERENCES

For more information about displaying dialog boxes in Excel 97, from the Visual Basic Editor, click the Office Assistant, type Dialogs, click Search, and then click to view "Dialogs property."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:

Q176476 OFF: Office Assistant Not Answering Visual Basic Questions
Microsoft Press: "Excel 5 Visual Basic for Applications Reference," version 5.0, pages 452, 576

"Function Reference," version 4.0, pages 307, 369

The On-Line Help menu in Microsoft Excel 7.0. Select the Help menu, and choose "Microsoft Excel Help Topics". Click on the Find tab and type xldialogopen.

Additional query words: 5.00a 5.00c 7.00a XL98 XL97 XL7 XL5

Keywords : kbprg kbdta kbdtacode PgmHowto KbVBA
Version : MACINTOSH:5.0,5.0a,98; WINDOWS:5.0,5.0c,7.0,7.0a,97; winnt:5.0
Platform : MACINTOSH WINDOWS winnt
Issue type : kbhowto


Last Reviewed: November 9, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.