Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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