I have the following code in the event handler for my modal dialog:

 case keyDownEvent:
  if (pEvent->data.keyDown.chr == pageUpChr)
  {
   // scroll up
   bHandled = true;
  }
  else if (pEvent->data.keyDown.chr == pageDownChr)
  {
   // scroll down
   bHandled = true;
  }
  else
  {
   FrmHandleEvent (pForm, pEvent);
   // redraw..
   bHandled = true;
  }
  break;

When this case is there, none of the hard keys (power, the four keys,
applications, menu, etc) work.. if I comment it out, they start working...
what am I doing wrong?

----------
Bradly J. Barton - [EMAIL PROTECTED]
Jenies Technologies Incorporated
(972) 602-1835
http://www.JTI.net
http://PalmInHand.com



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

Reply via email to