RE: MI-L OT - Windows Programming Philosophy

2004-09-16 Thread Tim Smith
Here's some discussion. Having said that I have always used the registry since Win95, I'm currently working with legacy 16-bit Windows code that uses INI files. http://www.flipcode.com/cgi-bin/msg.cgi?showThread=3438&forum=genera l&id=-1 -Original Message- From: Bill Thoen [mailto:[EM

RE: MI-L OT - Windows Programming Philosophy

2004-09-16 Thread Tim Smith
'using private profiles (those *.ini files) is no longer in fashion' I've never used them - I've been programming Windows since 1996 and have always used the registry, but I guess that's because I've never known anything different. I admit that when you open regedit it does look a mess, but it's o

RE: MI-L OT - Windows Programming Philosophy

2004-09-15 Thread David.Cautley
The consensus in our organization (and most of our friends/clients) is to use either INI files or XML. XML requires some library support that may or may not be easily accessible from MapBasic. I've not tried it. In MB I'm an INI kind of guy. -Original Message- From: Bill Thoen [mailto:[EM

RE: MI-L OT - Windows Programming Philosophy

2004-09-15 Thread Ian Tidy
[mailto:[EMAIL PROTECTED] Sent: Thursday, 16 September 2004 9:29 a.m. To: Mapinfo-L Subject: Re: MI-L OT - Windows Programming Philosophy On .NET the registry is no longer in fashion, since .NET applications can run on other platforms than windows. Here the latest fashion dictate XML (I guess), but

Re: MI-L OT - Windows Programming Philosophy

2004-09-15 Thread Uffe Kousgaard
On .NET the registry is no longer in fashion, since .NET applications can run on other platforms than windows. Here the latest fashion dictate XML (I guess), but you can safely keep using INI files for all your applications. Text files never disappear. INI files are simple and easy to work with, e

RE: MI-L OT - Windows Programming Philosophy

2004-09-15 Thread Peter Horsbøll Møller
#x27; Cc: MapInfo-L Subject: RE: MI-L OT - Windows Programming Philosophy Hi Bill, Personally, I can't stand the registry. It get so full of crap the it is impossible to navigate. I have also read that INI files are no longer recommended. But I choose to ignore this fact and store all my

RE: MI-L OT - Windows Programming Philosophy

2004-09-15 Thread Ian Tidy
Hi Bill, Personally, I can't stand the registry. It get so full of crap the it is impossible to navigate. I have also read that INI files are no longer recommended. But I choose to ignore this fact and store all my settings in INI files in the application directory. This way I know exactly whe