If are just attempting to READ the values, here is a module I wrote for that purpose a while ago:
You load the INI first using
LoadINI(iniName)
Then to get values:
GetIniValue("General", "NumberOfLevels")
Would Get
[General]
NumberOfLevels = 5
It would return 5
It's relatively intellegent and for any value not in a header (such as your example) it will be in "Uncategorized"




Reply With Quote