Microsoft Producer for PowerPoint 2003 SDK banner art
PreviousNext

Application.Version

The Version property retrieves the Microsoft Producer version number.

Syntax

Application.Version

Possible Values

This property is a read-only String in the following format: "2.0.XXXX.0" where XXXX represents the build number.

Remarks

The version number can be tested to confirm that an e-service is being used with the version of Microsoft Producer for which it was designed.

Example

This example illustrates how to check the beginning of the version string to determine whether the e-service might be incompatible with the user's version of Producer:

Version = window.external.Version;
if (Version.substring(0,3) != "2.0") {
  alert ("This e-service has not been tested against Microsoft Producer Version " + Version + ". You may experience problems.");
}

See Also

PreviousNext


© 2001-2003 Microsoft Corporation. All rights reserved.