i have an array. i want the contents of the array to contain a string to be displayed on the screen. i have tried two ways without luck.
The first way i made the array elements contain the contents of the string. aparently i can not do this with an array. so this led me to my second method.
My second method i defined the strings as pointers then filled the array with the pointers. but when i call the value in the array i do not get the string.


Second method.......
in this example Display should be " R E D "
___________________________________________________________
STRING* Title_0 = " Y e l l o w ";
STRING* Title_1 = " R E D ";
STRING* Title_2 = " P U R P L E ";
STRING* Title_3 = " B L U E ";

function fillin()
array[0] = Title_0;
array[1] = Title_1;
array[2] = Title_2;
array[3] = Title_3;

function DisplayStr()
current = 1;
str_cpy (Display,array[current]);
__________________________________________________________

Any help would be appreciated.


Mikes Wicked Games

www.mikeswickedgames.com