"Lorraine Chin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > When I tap my pushbutton with the stylus, I'm missing the events that occur > between the penDownEvent and the penUpEvent; namely the ctlEnterEvent and > ctlSelectEvent. I set a breakpoint at EvtGetEvent() and see the > penDownEvent but the very next time I hit the breakpoint, the event's a > penUpEvent.
Just wondering what kind of control you are tapping. Note that a button control should receive a ctlEnterEvent whereas a table row/col would receive a tblEnterEvent. Best bet is to debug in your form event handler. Set your breakpoints in that typical switch statement (switch (pEvent->eType) ) to watch for ctlSelectEvent and ctlEnterEvent. --Mike Y. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
