Share via


Application.MAPILogonComplete Event (Outlook)

Occurs after the user has logged onto the system.

Syntax

expression .MAPILogonComplete

expression A variable that represents an Application object.

Example

The following Microsoft Visual Basic for Applications (VBA) example displays a message after the user has logged onto the system.

Private Sub Application_MAPILogonComplete() 
 
'Occurs when a user has logged on 
 
 
 
 MsgBox "Logon complete." 
 
 
 
End Sub

See Also

Concepts

Application Object

Application Object Members