could you create a simple class to load variable from ini file, this is to load key value from the section in that ini file...
for example:
# ini file
[section]
key=value
int=5
[another]
game=rmvx
web=rmrk.net
i want to load the value "rmrk.net" from "web" key in "another" section
and also to load value 5 (this is integer/real) from "int" key in "section" section
thanks very much....