Application.UserName Property

Word Developer Reference

Returns or sets the user's name, which is used on envelopes and for the Author document property. Read/write String.

Syntax

expression.UserName

expression   An expression that returns an Application object.

Example

This example sets the user's name.

Visual Basic for Applications
  Application.UserName = "Andrew Fuller"

This example returns the name found in the Name box on the User Information tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  Msgbox Application.UserName

See Also