04-13-2009 05:18 PM
Hello All,
From the looks of things, I can't write arrays using the key functions to write to the ini file. Is this correct? I ask because I would like to simplify the code for this default color setting VI (8 colors) that allows me to specify default colors in an executable. It just seems excessive to call the read and write functions 8 times a piece. Any ideas?
Solved! Go to Solution.
04-13-2009 05:33 PM
Just a thought--
When I want to deal with multiple key-value pairs that have some dependance I look for a section. since each K-V has the same data type I would define the config file like:
[colors]
SA=<int>
SB=<int>
...
and just convert the values from the read section vi to an array
Otherwise- XML has native arrays
04-13-2009 05:48 PM
04-14-2009 10:11 AM