Macro to Determine If Active Document Is a TemplateLast reviewed: July 30, 1997Article ID: Q107532 |
The information in this article applies to:
SUMMARYTo determine if the active document is a template, you can dimension the FileSaveAs dialog to determine the file format. If the document is actually a document template, the format field in the FileSaveAs dialog will return a 1.
MORE INFORMATIONFileSaveAs [, .Format = number]
.Format 0 (zero) Word document 1 Document templateThe following macro example macro posts a message if the active document is a template.
Sub MainDim dlg As FileSaveAs GetCurValues dlg If dlg.Format = 1 Then MsgBox "Active document is a document template" End SubWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. Kbcategory: kbusage kbmacro KBSubcategory: |
Additional query words: 6.0 is template FileSaveAS word6
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |