On Tue, 16 Jul 2002, Robert Purcell wrote:
> And again, please don't tell me to "capture pen events before they are sent
> to the system handler"...I already know this.  I'm looking for more specific
> help on "HOW" to do this...

  um.. how much simpler can we get?

  instead of:

    if (!SysHandleEvent(&event))
      if (!ApplicationHandleEvent(&event))
        FrmDispatchEvent...

  do:

    if (!ApplicationHandleEvent(&event))
      if (!SysHandleEvent(&event))
        FrmDispatchEvent...

  ie: swap them around. ApplicationHandleEvent is your routine that
  handles the pen events and returns true when processed. thats how
  you do it. process the events before the system handler (SysHandleEvent)
  does :)

  it was spelt out to you - we are not all here to be your brain.
  heck, if that was the case - write to me with an idea, and i'll
  write the code and share some of the profits from it.

  writing programs is about taking a concept and converting it using
  a set of API's to get the desired result. the second part is what
  makes you a developer.

// az
[EMAIL PROTECTED]
http://www.ardiri.com/
http://www.mobilewizardry.com/



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

Reply via email to