1. INI files or registry?
- Posted by Ray Tomes <rtomes at ihug.co.nz> Jun 17, 2003
- 432 views
G'day I want to store some parameter settings outside my program for the next time it starts up. Logically these should be in an *.ini file or in the registry. I cannot find any mention of either in the documentation. What do people normally do in such cases? Ray
2. Re: INI files or registry?
- Posted by Pete Lomax <petelomax at blueyonder.co.uk> Jun 18, 2003
- 426 views
On Wed, 18 Jun 2003 11:25:19 +1200, Ray Tomes <rtomes at ihug.co.nz> wrote: >G'day > >I want to store some parameter settings outside my program for the next=20 >time it starts up. Logically these should be in an *.ini file or in the=20 >registry. I cannot find any mention of either in the documentation. What= =20 >do people normally do in such cases? > Go to http://www.rapideuphoria.com/contrib.htm and type "ini" The first one to appear is Mike's which I'll vouch for being rather nice Pete
3. Re: INI files or registry?
- Posted by Derek Parnell <ddparnell at bigpond.com> Jun 18, 2003
- 415 views
----- Original Message ----- From: "Ray Tomes" <rtomes at ihug.co.nz> To: "EUforum" <EUforum at topica.com> Subject: INI files or registry? > > > G'day > > I want to store some parameter settings outside my program for the next > time it starts up. Logically these should be in an *.ini file or in the > registry. I cannot find any mention of either in the documentation. What > do people normally do in such cases? This is just an opinion, but I think that INI files have more advantage for application-based parameters than the registry. * Easy to share between people * Easy to have multiple * Easy to suport different platforms * Easy to back up (not a single point of failure). * Easy to edit and print out using the editor of your choice. * OS version independance * Smaller --> faster * Totally flexible. Not locked into one paradigm of data representation. and there maybe more. -- Derek