I have a program that needs to do something for an extended period of time.
This process is done inside a loop, so within this loop I added the
following code so that my program would respond to UI events while in this
process.  The problem is that every UI event is handled correctly except
for the "Home" silkscreen button and the "Calc" silkscreen button.  Though,
menus, buttons and the other two silkscreen buttons work, "Find" and
"Menu".

Err error;
EventType event;
// Get next event
EvtGetEvent(&event, 1);
// Handle event
if (!SysHandleEvent(&event))
{
     if (!MenuHandleEvent(0, &event, &error))
     {
          if (!ApplicationHandleEvent(&event))
          {
                    FrmDispatchEvent(&event);
          }
     }
}

Can anyone tell me what I might be missing here?
Thanks.

Mark Lenz
(920) 832-3523
[EMAIL PROTECTED]


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

Reply via email to