IniWriteValue(FileName,Section,ValueName,Value)

Writes a value to an INI file.

Parameters:

FileName The name of the INI file
Section The section where value is located
ValueName The name of the value
Value The value that should be written

Remarks:

If Section or ValueName do not exist in the INI file, they are created. See INI functions for more information about INI files.

Example:

Call IniWriteValue("WIN.INI","vCache","MaxCache","1000") 'writes 1000 to value "MaxChache" inside 
                                                         'section "vCache" to file WIN.INI