ParameterPut
Updates a system parameter in the CITECT.INI file. If the system parameter does not exist, it is added to the CITECT.INI file.
Syntax
ParameterPut(Section, Name, Value)
Section:
The section name.
Name:
The system parameter name.
Value:
The value to put in the system parameter.
Return Value
0 (zero) if successful, otherwise an error is returned.
Related Functions
ParameterGet, WndGetFileProfile, WndPutFileProfile
Example
/* Changes the [Page] Windows system parameter in CITECT.INI to "4". */
ParameterPut("Page","Windows","4");
See Also