Application.MAPILogonComplete Event

Outlook Developer Reference

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/Visual Basic for Applications (VBA) example displays a message after the user has logged onto the system.

Visual Basic for Applications
  Private Sub Application_MAPILogonComplete()
'Occurs when a user has logged on
MsgBox "Logon complete."

End Sub

See Also