"Michael P. Hutchens, M.D., M.A." <[EMAIL PROTECTED]> wrote in
message news:11664@palm-dev-forum...
> CharPtr JoeShmoeTxt[JOE_SIZE];
I think you mean:
Char JoeShmoeTxt[JOE_SIZE];
There are two alternatives, local and global. If this is inside a function,
it's allocated on the stack. It's deallocated automatically when you leave
the scope. For globals, the allocation is done when your program gets a
normal launch (or a goto with globals). It's then deallocated when your
program exits.
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/