Application.Quit event (Outlook)

Occurs when Microsoft Outlook begins to close.

Syntax

expression.Quit

expression An expression that returns an Application object.

Remarks

This event is not available in Microsoft Visual Basic Scripting Edition (VBScript).

Example

This Microsoft Visual Basic for Applications (VBA) example displays a farewell message when Outlook exits. The sample code must be placed in a class module.

Private Sub Application_Quit() 
 
 MsgBox "Goodbye, " & Application.GetNamespace("MAPI").CurrentUser 
 
End Sub

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.