--- Alec wrote: > Is there any concept in an INI file corresponding to sub-keys as in the > Registry or is it strictly one level?
The true INI file concept does not allow subkeys, however if you are really desperate then you could do something similar to this: [Section 1] Subsection A\Thing1=Blah Subsection A\Thing2=Blah Subsection B\Thing1=Blah Subsection B\Thing2=Blah [Section 2] Subsection A\Thing1=Blah Subsection A\Thing2=Blah Subsection B\Thing1=Blah Subsection B\Thing2=Blah Or conversely you could do it this way: [Section 1\Subsection A] Thing1=Blah Thing2=Blah [Section 1\Subsection B] Thing1=Blah Thing2=Blah [Section 2\Subsection A] Thing1=Blah Thing2=Blah [Section 2\Subsection B] Thing1=Blah Thing2=Blah You could always look at a registry export file, which very closely follows the INI file format bar the first line. This may give you some ideas as well. All the best, Alex ICQ# 37414292 ------------------------ Yahoo! Groups Sponsor ---------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/JV_rlB/TM ---------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
