Version Property

       

Returns the version of the specified object with the format: "x.x.x", where x represents a number in the version. Read-only String.

Remarks

If the Application object is specified, the Version property returns the version of the application. When the Version property for the System object is accessed, it returns the current version of the operating system as you might see used on the Properties page of the System dialog box.

Example

The following example returns the version of the application.

Public Sub GetAppVersion()
	Dim myAppVersion As String

	myAppVersion = Application.Version
End Sub