.INI file - urgent - newbie

  • Thread starter Thread starter mitra
  • Start date Start date
M

mitra

hi all,
i'a newbie in pgming,
i have to make an .INI file which stores some 5 paths of
the files i will use in my pgm. and i don't know how i
have to do so.
how do i have to create it ? where ? how shall i read it?
any help (code/article/...) will be extremely appreciated.
thank you in advance.
mitra
 
Not recommended to use ini files really. But if you must. then use the

FileSystem Class for file read write operations etc. Look it up using
search
 
Hello,

mitra said:
i have to make an .INI file which stores some 5 paths of
the files i will use in my pgm. and i don't know how i
have to do so.
how do i have to create it ? where ? how shall i read it?
any help (code/article/...) will be extremely appreciated.

XML files:

http://www.mvps.org/dotnet/dotnet/samples/miscsamples/
-> "XmlSerialization"

http://www.palmbytes.de/content/dotnetlibs/optionslib.htm (C#)

For "classic" INI files:

http://www.mentalis.org/soft/class.qpx?id=6
 
Back
Top