NameSpace.CurrentUser property (Outlook)

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.

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

See also

NameSpace Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.