I use FrmDoDialog to display some information and then close it by the following code:
pForm = FrmInitForm( AboutForm ); FrmSetEventHandler( pForm, AboutFormEventHandler ); [...] SetFieldText( pFld, message, true); FrmDoDialog( pForm ); FrmDeleteForm( pForm );
But when that form closes ( and disappears ), it leaves texts on the behind form ( the form that calls FrmDoDialog ), no matter if I set the option SaveBehind or not.
Do I miss something ?
Call FrmDrawForm on the dialog before calling your FrmDoDialog function.
-- Ben Combee, senior DTS engineer, PalmSource, Inc. Read "Combee on Palm OS" at http://palmos.combee.net/
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
