![]() |
Previous | Next |
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
Previous | Next |