re: An application is closed, a blank screen is shown.

2005-05-20 Thread ThuNguyet Nguyen
You could try to queue an appStopEvent to exit your program. I call this function. HTH, tnn void ExitProgram() { EventType event; MemSet(event, sizeof(EventType), 0); event.data.frmLoad.formID = FrmGetActiveFormID(); event.eType = appStopEvent; / Get out on stop event.

Re: An application is closed, a blank screen is shown.

2005-05-20 Thread A.Kazantsev
Search the forum archive for Exit keyword. Early this year there was a discussion, which clarified everything on this subject. In particular it proved any Exit button evil. You don't need an Exit button in your application because there is Home button in your Palm. The general purpose Home button

re: An application is closed, a blank screen is shown.

2005-05-20 Thread Dr. Vesselin Bontchev
You could try to queue an appStopEvent to exit your program. Don't do that! On some platforms it won't work. For a description how to exit from your application, see this: http://flippinbits.com/twiki/bin/view/FAQ/HowToExitBackToLauncher Regards, Vesselin -- For information on using the

Re: An application is closed, a blank screen is shown.

2005-05-20 Thread Dr. Vesselin Bontchev
Early this year there was a discussion, which clarified everything on this subject. In particular it proved any Exit button evil. Proved? :-) I very much doubt it. You don't need an Exit button in your application because there is Home button in your Palm. With all due respect, it is up to