Anyone know how to make an updown control speed up (the values of a buddy control) the longer it is held down? Does it require a special control to do this or can the code be developed?
Thanks!
Printable View
Anyone know how to make an updown control speed up (the values of a buddy control) the longer it is held down? Does it require a special control to do this or can the code be developed?
Thanks!
You could use a timer to change the increment property. Make the timer start when the updown is pressed (mouse down) then if the timer reaches a certian number (length of time) then increase the increment property. Then on mouse up set the increment back to 1 or whatever value you want.