Hi!
Why doesn't anything happen on tapping on abc from e.g. Memopad?
I want to see my app (named NotifyTest) instead of the built-in 
keyboard after having terminated my app at least once for 
notification. (I notify here on quitting my app, to give the  
emulator a chance to get the notification.) Thank you and perhaps 
more.


static UInt32 NotifyTestPalmMain( UInt16 cmd, SysNotifyParamType 
*cmdPBP, UInt16 launchFlags)                                    
                                                         
{UInt32 *resultP;
    Err error;

    switch (cmd)
    {       
   case sysAppLaunchCmdNotify:
             SysAppLaunch (0, 'STRT',0, 
sysAppLaunchCmdNormalLaunch,cmdPBP,resultP); 
     // break;
    case sysAppLaunchCmdNormalLaunch:
    
        error = AppStart();
        if (error) 
            return error;
        FrmGotoForm(MainForm);
        AppEventLoop();

          SysNotifyRegister(0, 'STRT', sysNotifyKeyboardDialogEvent , 
NULL, sysNotifyNormalPriority, 0);  
 
        AppStop();
        break;

    default:
        break;
    }

    return errNone;
}





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

Reply via email to