SQL Object
 
Syntax
 
SQL.ReadSystemSetting(KeyField[, DefaultValue])
 
Description
Reads out a system setting, optionally providing a default value if the setting would not already exist.
 
Parameter
Description
KeyField
System parameter name
DefaultValue
Optional. An alternate value if the parameter is not already set.
 
See Also
Example
Sub Main()
 
    MsgBox SQL.ReadSystemSetting("VerkoopManager")    ' namen verkopers
 
End Sub