aci.Usr_WriteProfStrg

SUMMARY

Write a string to a configuration file in ini-file format.

SYNTAX

aci.Usr_WriteProfStrg(<inifile>, <section>, <entry>, <value>)

ARGUMENTS

inifile (type:string)
The configuration file to be changed.
section (type:string)
the section within the configuration file.
entry (type:string)
The entry within the section.
value (type:string)
The new string value.
You may specify a boolean value for this argument in which case true will be represented by "1" and false will be represented by "0".

EXAMPLES

aci.Usr_WriteProfStrg("vision2000.ini", "ZipArchives", "Path_1", "d:\data\")
		


Syntax Notation
[aaa]
aaa is optional (zero or one occurences)
(aaa|bbb)
aaa exclusive or bbb
(aaa)*
aaa may occur indefinitely often or may be omitted
(aaa)+
aaa may occur indefinitely often but at least once
(aaa)m..n
aaa may occur from m to n times