Macro to Determine If Active Document Is a Template

ID: Q107532

The information in this article applies to:

SUMMARY

To 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 INFORMATION

FileSaveAs [, .Format = number]

 .Format  0 (zero)  Word document
          1         Document template

The following macro example macro posts a message if the active document is a template.

Sub Main
Dim dlg As FileSaveAs GetCurValues dlg If dlg.Format = 1 Then MsgBox "Active document is a document template"
End Sub

WARNING: 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 winword format

Version           : 6.0
Platform          : WINDOWS

Last Reviewed: July 30, 1997