![]() |
|
#3
|
||||
|
||||
|
I'd have thought you could use something like:
Code:
Private Sub SpinDays_SpinDown()
With Range("D4")
If .Value = 0 Then Exit Sub
.Value = .Value - 1
End With
End Sub
Private Sub SpinDays_SpinUp()
With Range("D4")
.Value = .Value + 1
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
| Tags |
| activex control, increment value, spinbutton |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
multiply by incrementing by 5s
|
marynomore | Excel | 2 | 03-27-2013 05:36 AM |