05-02-2006, 05:12 AM
I need to build an array of known data and use it for callback variables
Array will consist of ex:
System("Hoonah", 00486263, "s91.gif");
System("Juneau", 00264167, "s32.gif");
System("Clipperton", 00679491, "s73.gif");
System("Seattle", 0030402, "s41.gif");
System("Olympia", 00179513, "s21.gif");
System("Salem", 00331473, "s92.gif");
System("Portland", 00419316, "s21.gif");
System("Eugene", 00294127, "s41.gif");
System("Yuma", 00661162, "s31.gif");
i need to be able to call into this array by name "Hoonah" and recive all data back as strings
so call value would be "Hoonah" and return would be "Hoonah", 00486263, "s91.gif"
i am doing extreamly repeatitive tasks and coding will take 1,00's of lines...but i know that an array will drop coding length down to 100's.
Thank you very much.
Array will consist of ex:
System("Hoonah", 00486263, "s91.gif");
System("Juneau", 00264167, "s32.gif");
System("Clipperton", 00679491, "s73.gif");
System("Seattle", 0030402, "s41.gif");
System("Olympia", 00179513, "s21.gif");
System("Salem", 00331473, "s92.gif");
System("Portland", 00419316, "s21.gif");
System("Eugene", 00294127, "s41.gif");
System("Yuma", 00661162, "s31.gif");
i need to be able to call into this array by name "Hoonah" and recive all data back as strings
so call value would be "Hoonah" and return would be "Hoonah", 00486263, "s91.gif"
i am doing extreamly repeatitive tasks and coding will take 1,00's of lines...but i know that an array will drop coding length down to 100's.
Thank you very much.