psVersion - cApplication
The version of the program
Type: Property
Access: Read/Write
Data Type: String
Parameters: None
Syntax
Property String psVersion
| Access Type | Syntax |
|---|---|
| Read Access: | Get psVersion to StringVariable |
| Write Access: | Set psVersion to StringVariable/Value |
Description
psVersion is the version of the program. Whenever the program needs to access the Registry, it uses a combination of the psCompany, psProduct, psVersion and psProgram properties to determine the key name that should be accessed. The four values are added together to form the key. For example, if:
psCompany = "ABC, Inc" psProduct = "Payroll" psVersion = "1.0" psProgram = "People"
then the key that would be accessed would be:
HKEY_CURRENT_USER\Software\ABC, Inc\Payroll\1.0\People
You should set this property to the version of your software.
| Col 1 | Col 2 |
|---|---|
| Note: | If you do not provide a value for this property, the value "1" will be used. |