"Gert Wurzer" <[EMAIL PROTECTED]> wrote:
>for (int i = objectCount; i >= 1; i--)
>{                
>  FrmRemoveObject(&form, i);          //POSE says that I read from
>                                        Memory Manager structures
>}

It's 0-based:

  for (int i = objectCount - 1; i >= 0; i--)

-- 
    -M-                                              [EMAIL PROTECTED]

-- 
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