Version Property

Microsoft Publisher Visual Basic

expression.Version

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

The following example displays the version and build number of the currently-installed copy of Microsoft Publisher.

MsgBox "You are currently running Microsoft Publisher, " _
    & " version " & Application.Version & ", build " _
    & Application.Build & "."