>   if (SysAlarms == 0)
>        size = 9;
>        StrCopy(&tempdata, &no);            <--  Line 45
>   else if (SysAlarms == 1)
>        size = 8;
>   else
>        size = 9;

What you probably want is:

if (SysAlarms == 0)
{
    size = 9;
    StrCopy(tempdata, no);            <--  Line 45
}
else if (SysAlarms == 1)
    size = 8;
else
    size = 9;


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to