XL: How to Display the Open and Save As Dialog BoxesLast reviewed: February 3, 1998Article ID: Q139723 |
The information in this article applies to:
SUMMARYWhen 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 INFORMATIONMicrosoft 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 engineers 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/refguide/default.asp Method 1This Visual Basic code uses the xlDialogOpen and xlDialogSaveAs constants to display the dialog. To open a file:
Application.Dialogs(xlDialogOpen).ShowTo 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).ShowTo save a file in the "c:\public" directory named "acct.xls":
Application.Dialogs(xlDialogSaveAs).Show _ ("c:\public\acct.xls") Method 2Use 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.GetOpenFilenameTo save the active workbook:
Activeworkbook.SaveAs filename:=Application.GetSaveAsFilename Method 3Use 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:
ARTICLE-ID: Q122507 TITLE : MXL5: Extension Overrides Default Directory Setting ARTICLE-ID: Q104581 TITLE : Macro to Change Default *.XL* to *.* in Open Dialog Box REFERENCESMicrosoft 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" without the quotes.
|
Additional query words: 5.00 5.00a 5.00c 7.00 7.00a XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |