PDA

View Full Version : Solved: types of programming



philfer
01-06-2008, 10:52 AM
I have seen code that uses .ini files but have no idea what they are or what they do or why one would use them in VBA code, or what type of programming they are

Can anyone advise and/or recommend any good books on this type of programming

Also, what are libraries (not the kind where you get books!!) and what type of programming is this.

Again any recommendations of books would be very helpful

Bob Phillips
01-06-2008, 12:29 PM
INI files are the old way that MS used to store system/application data, which would be read in and startup to give the application its context. Not so common now, although still used, as we now have the registry to store that type of data.

Libraries are very similar to the ones you know. They don't store books, but they store routines, procedures, classes, et al that can be used within your applications.

philfer
01-10-2008, 12:11 PM
Are there any good books where I can learn about this stuff

Bob Phillips
01-10-2008, 02:19 PM
It is far too small a subject for a book.

philfer
01-12-2008, 04:45 AM
Have you come across any books you would recommend that cover this as part of its contents?

Bob Phillips
01-12-2008, 05:31 AM
Which part are you referring to, INI files or the registry?

philfer
01-12-2008, 05:38 AM
Both

Bob Phillips
01-12-2008, 05:52 AM
Well I have never seen anything on INI files in a book, but I have seen a few covering the registry. But it is so simple, it hardly warrants a book check, just look at GetSetting, SaveSewtting, and DeleteSetting in VBA Help.