Quit Event

Microsoft Word Visual Basic

Occurs when the user quits Word.

Private Sub object_Quit()

object    An object of type Application declared with events in a class module. 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 quits Word. As a result, when Word is started again, the Standard and Formatting toolbars will be visible.

This code must be placed in a class module, and an instance of the class must be correctly initialized in order 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