Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.79 KB

Word.Application.Quit(method).md

File metadata and controls

63 lines (38 loc) · 1.79 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Quit method (Word)
vbawd10.chm158336081
vbawd10.chm158336081
Word.Application.Quit
0279d848-a8b7-dac7-1e84-a55c72789e3b
06/08/2017
medium

Application.Quit method (Word)

Quits Microsoft Word and optionally saves or routes the open documents.

Syntax

expression.Quit (SaveChanges, OriginalFormat, RouteDocument)

expression Required. A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
SaveChanges Optional Variant Specifies whether Word saves changed documents before closing. Can be one of the WdSaveOptions constants.
OriginalFormat Optional Variant Specifies the way Word saves documents whose original format was not Word Document format. Can be one of the WdOriginalFormat constants.
RouteDocument Optional Variant True to route the document to the next recipient. If the document does not have a routing slip attached, this argument is ignored.

Example

This example closes Word and prompts the user to save each document that has changed since it was last saved.

Application.Quit SaveChanges:=wdPromptToSaveChanges

This example prompts the user to save all documents. If the user clicks Yes, all documents are saved in the Word format before Word closes.

Dim intResponse As Integer 
 
intResponse = _ 
 MsgBox("Do you want to save all documents?", vbYesNo) 
If intResponse = vbYes Then Application.Quit _ 
 SaveChanges:=wdSaveChanges, OriginalFormat:=wdWordDocument

See also

Application Object

[!includeSupport and feedback]