Could someone tellme which key to use to scroll up/down in a get with spinner from keyboard.
Thanks in advance
Otto
Could someone tellme which key to use to scroll up/down in a get with spinner from keyboard.
Thanks in advance
Otto
case nKey == VK_PRIOR
if ::lSpinner
Self--
endif
case nKey == VK_NEXT
if ::lSpinner
Self++
endifAntonio Linares wrote:Otto,
Please add this code to Class TGet Method KeyDown():
case nKey == VK_PRIOR if ::lSpinner Self-- endif case nKey == VK_NEXT if ::lSpinner Self++ endif
Now you can use PageUp and PageDown