The information in this article applies to:
SUMMARYThis article describes how to use the Microsoft Visual Basic for Applications SaveAs method. The SaveAs method is used to save a presentation that has not been saved previously or to save an existing presentation with a new name. 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 SaveAs ParametersThe SaveAs method has three parameters:
The Filename parameter specifies the name you want to assign to the file.
If you do not specify the path, PowerPoint saves the file in the current
folder.
The following example saves a PowerPoint presentation, called test.ppt to the root of the C:\ drive.
NOTE: If a file named test.ppt already exists in the specified location,
PowerPoint overwrites the file.
The FileFormat parameter specifies the file format and uses one of the following PpSaveAsFileType constants:
The following macro example saves a presentation called "PowerPoint 95
presentation" in the root directory, in PowerPoint 95 format.
The EmbedFonts parameter specifies whether or not TrueType fonts are
embedded in the presentation when you save it. To embed the TrueType fonts,
use the msoTrue value. The default value is msoFalse.
Using Error Trapping with the SaveAs MethodThe following sample macro demonstrates how to trap errors that may occur when you use the SaveAs Method.
REFERENCES
For more information about creating Visual Basic for Applications macros,
click the Office Assistant in Microsoft PowerPoint, type how to create a
macro, click Search, and then click to view "Create a macro in Visual
Basic Editor."
Q176476 OFF: Office Assistant Not Answering Visual Basic QuestionsFor more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base: Q163435 VBA: Programming Resources for Visual Basic for Applications Additional query words: 8.00 ppt8 vba vbe powerpt powerpnt ppt8.0 program programming
Keywords : kbcode kbmacro kbprg kbdta kbdtacode kbpptvba |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |