bydesign
Board Regular
- Joined
- Nov 29, 2003
- Messages
- 184
Hello all
I have a spinner control that updates a textbox and calls a few subs from the spinner change event.
The problem is intermittent ... sometimes I can click one and the value will change by 1... other times it jumps 2 or 3...
I've tried different computers / mouses / people... all with the same results.
How would I limit a click to a value change of 1 while still maintaining the ability to hold down the mouse button for fast scrolling?
The code below is what I have... I've tried "DoEvents" between calls... no change in results...
spnPath_Change()
txtPath.text = spnPath.Value
Call Display_Path
Call Refresh_Form
end sub
I have a spinner control that updates a textbox and calls a few subs from the spinner change event.
The problem is intermittent ... sometimes I can click one and the value will change by 1... other times it jumps 2 or 3...
I've tried different computers / mouses / people... all with the same results.
How would I limit a click to a value change of 1 while still maintaining the ability to hold down the mouse button for fast scrolling?
The code below is what I have... I've tried "DoEvents" between calls... no change in results...
spnPath_Change()
txtPath.text = spnPath.Value
Call Display_Path
Call Refresh_Form
end sub