On Mon, 19 Nov 2001, [EMAIL PROTECTED] wrote: > I have just a small problem, it works for all my arrays but not for my > char *TabName[100], In this array it's always the same result for each > fields of the array(the last one). > Maybe I must allocate memory for this dynamic array, but I don't know > how we do in CodeWarrior.
You need to allocate memory (try MemPtrNew) or declare char TabName[100][32]; You should probably get yourself some books on C and Palm OS programming as these are basic questions. Jake -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
