> From: Vitaly_Romanishko
> when I popup FormAlert over bitmap image and then close it,
> form doesn't restore bitmap. How can I restore bitmap?
>

I believe that is the purpose of the frmUpdateEvent event in your
MainFormHandleEvent.
Add code like the following:

case frmUpdateEvent:
  FrmDrawForm( frmP );
  DrawYourStuffHere();
  handled = true;
  break;

In response to frmUpdateEvent you do essentially the same as with
frmOpenEvent, except you do not call MainFormInit().


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