Application.Version Property (Publisher)
Returns a String indicating the version number of the currently-installed copy of Microsoft Publisher. Read-only.
Syntax
expression .Version
expression A variable that represents a Application object.
Return Value
String
Example
The following example displays the version and build number of the currently-installed copy of Publisher.
MsgBox "You are currently running Microsoft Publisher, " _
& " version " & Application.Version & ", build " _
& Application.Build & "."