The information in this article applies to:
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.
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 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 1This Visual Basic code uses the xlDialogOpen and xlDialogSaveAs constants to display the dialog.To open a file:
To open a file named "myacct.xls" in the "c:\personal" directory:
To save a file:
To save a file in the "c:\public" directory named "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:
To save the active workbook:
Method 3Use the Microsoft Excel 4.0 macro language equivalents to display the dialog boxes.To open a file:
To save a file:
For additional information, please see the following articles in the
Microsoft Knowledge Base:
Q122507 MXL5: Extension Overrides Default Directory Setting 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."
Q176476 OFF: Office Assistant Not Answering Visual Basic QuestionsMicrosoft 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 |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |