David Fedor wrote:
> Chris is correct; it isn't correct to draw stuff onto a form before
> calling FrmDrawForm.
Uh, here's what your Debugging Palm OS Application white paper says at
http://www.palm.com/devzone/docs/debug.html#42673 --
> Handle frmUpdateEvent
> Special redraw needs--If your form has special redraw needs,
> it makes sense for you to redraw this form yourself.
>
> [...] you can use code similar to the following example:
>
> if (even ->eType == frmUpdateEvent)
> {
> formP = FrmGetActiveForm();
> DrawMySpecialStuff (formP);
> FrmDrawForm (formP);
> handled = true;
> }
I guess "similar" here means "just like this example but with the draw
calls reversed", eh? :-) :-)
-slj-