Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.46 KB

Word.Document.New.md

File metadata and controls

63 lines (41 loc) · 1.46 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.New event (Word)
vbawd10.chm4001004
vbawd10.chm4001004
Word.Document.New
c37f7e20-f429-e921-3d17-609d536e8baa
06/08/2017
medium

Document.New event (Word)

Occurs when a new document based on the template is created. A procedure for the New event will run only if it is stored in a template.

Syntax

expression.**Private Sub Document_New'

expression A variable that represents a Document object.

Remarks

For information about using events with the Document object, see Using events with the Document object.

Example

This example asks the user whether to save all other open documents when a new document based on the template is created. (This procedure is stored in the ThisDocument class module of a template, not a document.)

Private Sub Document_New() 
 Dim intResponse As Integer 
 Dim strName As String 
 Dim docLoop As Document 
 
 intResponse = MsgBox("Save all other documents?", vbYesNo) 
 
 If intResponse = vbYes Then 
 strName = ActiveDocument.Name 
 For Each docLoop In Application.Documents 
 With docLoop 
 If .Name <> strName Then 
 .Save 
 End If 
 End With 
 Next docLoop 
 End If 
End Sub

See also

Document Object

[!includeSupport and feedback]