I have a vscrollbar acting as a spinner to a text box. When I click the vscrollbar, I want the number to increment or decrement...no problem:
In the Form_Load:
vscroll1.min = -1
vscroll1.max = -100
In the vscroll1_Change:
text1.text = format$(abs(vscroll1.value))
Now if I have a value in text1.text, like say 3, I would like to increment or decrement starting from 3, not the Min value of the vscrollbar.
How can this be done????
In the Form_Load:
vscroll1.min = -1
vscroll1.max = -100
In the vscroll1_Change:
text1.text = format$(abs(vscroll1.value))
Now if I have a value in text1.text, like say 3, I would like to increment or decrement starting from 3, not the Min value of the vscrollbar.
How can this be done????