Share via


Application.Quit Event (Word)

Occurs when the user exits Microsoft Word.

Syntax

Private Sub Application_Quit()

expression A variable that represents an Application object that has been declared with events in a class module.

Remarks

For information about using events with the Application object, see Using Events with the Application Object.

Example

This example ensures that the Standard and Formatting toolbars are visible before the user exits Word. As a result, when Word is started again, the Standard and Formatting toolbars are visible.

This code must be placed in a class module, and an instance of the class must be correctly initialized to see this example work; see Using Events with the Application Object for directions on how to accomplish this.

Public WithEvents appWord as Word.Application 
 
Private Sub appWord_Quit() 
 CommandBars("Standard").Visible = True 
 CommandBars("Formatting").Visible = True 
End Sub

See Also

Concepts

Application Object Members

Application Object