Expand Minimize
This topic has not yet been rated - Rate this topic

Application.Caption Property

Office 2007
Returns or sets the text displayed in the Title bar of the application window. Read/write String.

Syntax

expression.Caption

expression   A variable that represents an Application object.

Remarks

To change the caption of the application window to the default text, set this property to an empty string ("").

Example

This example resets the caption of the application window.

Visual Basic for Applications
Application.Caption = ""

This example changes the caption of the Word application window to include the user name.

Visual Basic for Applications
Application.Caption = UserName & "'s copy of Word"



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.