"Wilson, Mike E." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have the decrement and increment working fine for a single pen down event but how do I get it to work where I want to press and hold the repeat button down to decrement or increment values quickly. > > I thought static Boolean frmCalendar_rptYearDec_OnRepeat(EventPtr event) procedure would be where I would place the code but this never appears to get used. Any ideas? > > Regards, > > Michael W. >
The OS is not repeating the event because you are returning true when handling it. Returning true tells the OS that there is no action required by it. Return false and the OS will keep repeating the event which is its default action for the repeat event. Ralph -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
