Version Property

Applies To

Application object, System object.

Description

Application object: Returns the Microsoft Word version number. Read-only String.

System object: Returns the version number of the operating system. Read-only String.

See Also

Build property, OperatingSystem property.

Example

This example displays the Word version number in a message box.

Msgbox "The version of Word is " & Application.Version
This example displays the version number of the operating system in a message box.

Msgbox "The system version is " & System.Version