Build Property
From Microsoft Publisher Visual Basic
expression.Build
expression Required. An expression that returns one of the objects in the Applies To list.
Example
This example displays the the build number of Publisher.
Sub BuildNumber()
MsgBox Prompt:="The current Microsoft Publisher build number is " & _
Application.Build, Title:="Microsoft Publisher Build"
End Sub