SetProperty
This function will save a property value for future retrieval using SYS.GetProperty. Property values will persist between sessions because they are saved in the solution MDB file. SYS.GetProperty and SYS.SetProperty can be used in place of making function calls to an INI file or to the System Registry. Use this command with caution. The solution database is not designed for heavy adding and deleting of properties. Microsoft Access tends to grow over time as records are added and deleted.
Group: System
Syntax: SYS.SetProperty(vKey, vID, vValue)
vKey (Variant) is the main key. This will be the identifier for all like properties and their values.
vID (Variant) is the sub key. This key is referenced to obtain its value
vValue (Variant) is the property value.
Example:
Dim nIssuesCt as Long
nIssuesCt = 200
SYS.SetProperty("Counts", "LastTxr", 500)
SYS.SetProperty("Counts", "LastIssue", nIssuesCt)
Supported Versions: RFgen 4.0 and higher.