
Se questo puo essere utile:
METHOD 1
.New1([INIFileName])
initialize method 1
example: INI.New1("test.ini")
.write1([Section], [Key], [Value])
write or update a ROW into INI file
example: INI.write1("USER", "Name", "maXim")
.read1([Section], [Key], [DefaultValue])
read a ROW from INI file
if ROW not exist or is not valid, value of myVar is equal as [DefaultValue]
example: myVAR = INI.read1("USER", "Name", "empity")
.DeleteSection1([Section])
delete from INI file a specific [Section] and all his keys
example: INI.DeleteSection1("USER")
METHOD 2
.New2
INITIALIZE method 2
example: INI.New2
.write2([INIFileName], [Section], [Key], [Value])
write or update a ROW into INI file [INIFileName]
example: INI.write2("test.ini", "USER", "Name", "maXim")
.read2([INIFileName], [Section], [Key], [DefaultValue])
read a ROW from INI file [INIFileName]
if ROW not exist or is not valid, value of myVar is equal as [DefaultValue]
example: myVAR = INI.read2("test.ini", "USER", "Name", "(empity)")
.DeleteSection2([INIFileName], [Section])
delete from INI file [INIFileName] a specific [Section] and all his keys
example: INI.DeleteSection2("test.ini", "USER")

che giornataccia Max,