hi:
you can use a progress dialog!
try to do that:

to show the dialog 

#if SDK_VERSION < 35
  pProgress = ( ProgressPtr ) PrgStartDialogV10(
cTitle, cbProgress );
#else
  pProgress = ( ProgressPtr ) PrgStartDialogV31(
cTitle, cbProgress );
#endif
  pProgress->cancel = !bShowCancel;
  PrgUpdateDialog( pProgress, 0, 0, cMessage, true );
  
to update the dialog:
                
PrgUpdateDialog( progressP, err, 0, message, true );

to cancel the dialog do that:

PrgStopDialog( progressP, false );

--- Sylvain Fonteneau <[EMAIL PROTECTED]>
wrote:
> Hello there,
> 
> My program perform a lengthy operation and I would
> want to display a "Please wait..." message box
> without
> any buttons. This message would be deleted at the
> end
> of the operation.
> 
> Can anyone help me ?
> _____________________
> Sylvain Fonteneau
> 
>
___________________________________________________________
> Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et
> en fran�ais !
> Yahoo! Mail : http://fr.mail.yahoo.com
> 
> -- 
> For information on using the Palm Developer Forums,
> or to unsubscribe, please see
http://www.palmos.com/dev/support/forums/


__________________________________________________
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com

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

Reply via email to