Microsoft KB Archive/107532

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 10:19, 20 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Macro to Determine If Active Document Is a Template

Q107532



The information in this article applies to:


  • Microsoft Word for Windows, version 6.0
  • Microsoft Windows 3.1





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

Additional query words: 6.0 is template FileSaveAS word6 winword format

Keywords :
Issue type :
Technology :


Last Reviewed: November 4, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.