Returns the specified version information of the Program object. This is used for maintaining versions of ATEasy Application files. This version info can be entered/modified via File menu Versions (File Versions dialog).
[ vInfo = ] Object.VersionInfo ( enVersionType )
The VersionInfo property syntax has the following parts:
Name |
Type |
Description |
Object |
ASystem |
ASystem object |
enVersionType |
Val enumAVersionInfo |
An enum specifying the type of version information. |
vInfo |
Val Variant |
The version information. |
enumAVersionInfo can be one of the following values:
Name |
Value |
Description |
aversionInfoNumber |
1 |
Number |
aversionInfoTime |
2 |
Time |
aversionInfoUserName |
3 |
User Name |
aversionInfoDescription |
4 |
Description |
aversionInfoLastLabel |
5 |
LastLabel |
aversionInfoLastModifiedNumber |
6 |
Number Last Modified |
aversionInfoLastModifiedTime |
7 |
Time Last Modified |
aversionInfoLastModifiedUserName |
8 |
User Name Last Modified |
aversionInfoLastModifiedDescription |
9 |
Last Modified Description |
The first set of version information (Number, Time, User Name, and Description) is created by the user request via setting the"Save Version Auto" flag in the project Sharing property page. If the user did not set the Auto flag, then the system remembers the last modified version information
The following statement retrieves the current Program VersionInfo last modified, User Name:
print System.VersionInfo( aversionInfoUserName )
AApp.VersionInfo, ADriver.VersionInfo, ASystem.VersionInfo, enumAVersionIInfo, File menu Versions, File Versions dialog