MapiLogonComplete Event

Microsoft Outlook Visual Basic

MapiLogonComplete Event

       

Occurs after the user has logged onto the system.

Private Sub expression_MapiLogonComplete( )

expression   A variable which references an object of type Application declared with events in a class module.

Example

The following example displays a message after the user has logged onto the system.

Private Sub objApp_MapiLogonComplete()
'Occurs when a user has logged on

    MsgBox "Logon complete"

End Sub