GetProperty
This function will return a property value that has been set using SYS.SetProperty. SYS.GetProperty and SYS.SetProperty can be used in place of making function calls to an INI file or to the System Registry. The keys and data are stored in the solution MDB file.
Group: System
Syntax: Syntax: vValue = SYS.GetProperty(vKey, vID)
vValue (Variant) is the property value.
vKey (Variant) is the main key. It is the name of the collection of properties that are to be grouped together.
vID (Variant) is the property key. It is the reference to the value being returned. If an ‘*’ (asterisk) is used as the ID, a Chr(1) delimited list of properties contained within the collection will be returned.
Example:
Dim vTransfersCt As Variant
Dim vIssuesCt As Variant
vTransfersCt = SYS.GetProperty("Counts", "LastTfr")
vIssuesCt = SYS.GetProperty("Counts", "LastIssue")
Versions Supported: RFgen 4.0 and newer.