NameSpace.CurrentUser Property

Outlook Developer Reference

Returns the display name of the currently logged-on user as a Recipient object. Read-only.

Syntax

expression.CurrentUser

expression   A variable that represents a NameSpace object.

Example

This Visual Basic for Applications (VBA) example uses the CurrentUser property to obtain the name of the currently logged-on user and then displays a message box containing the name.

Visual Basic for Applications
  Sub DisplayCurrentUser()
    Dim myNamespace As Outlook.NameSpace
	
    Set myNameSpace = Application.GetNameSpace("MAPI")
    MsgBox myNameSpace.CurrentUser
End Sub

See Also