Is it possible to have a call to FrmGoToForm(fooForm) and then have a
FrmAlert in my FrmCloseEvent and still have the system open fooForm?  For
some reason this (overly simplified) code in my event handler causes my app
to hang.

case ctlSelectEvent:
          FrmGotoForm(CarForm);
          break;
case frmCloseEvent:
          FrmAlert(InvalidDateTimeAlert);

But if I put another FrmGotoForm in the form close event it works properly.
See below.

case ctlSelectEvent:
          FrmGotoForm(CarForm);
          break;
case frmCloseEvent:
        FrmAlert(InvalidDateTimeAlert);
        FrmGotoForm(CarForm);
        break;

Does anybody know why this is happening?



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

Reply via email to