--- Robert Brinson <[EMAIL PROTECTED]> wrote:
> Ok. If there isn't an event generated when a user taps the 
> scroll arrows, then what good is it to even have a LstScrollList 
> function available? 

One reason it is there is so you can do single-row scrolling with the
up and down buttons.  For example, (pseudocode):

if eventType == keyDownEvent and TxtCharIsHardKey(...)
then
  if keyDown.chr == vchrPageUp
  then
    LstScrollList(listP, winUp, ...)
  else
    LstScrollList(listP, winDown, ...)

Another reason is so you can respond to sclRepeatEvents to support
immediate-mode scrolling with a scroll bar.


__________________________________________________
Yahoo! - We Remember
9-11: A tribute to the more than 3,000 lives lost
http://dir.remember.yahoo.com/tribute

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

Reply via email to