Thread
:
how can I make a ScrollBar &/or a SpinButton display values?
View Single Post
01-04-2016, 04:25 AM
Debaser
Windows 7 64bit
Office 2010 32bit
Competent Performer
Join Date: Oct 2015
Location: UK
Posts: 221
Assuming default names for a Spinbutton and Label control, you would have:
Code:
Private Sub SpinButton1_Change() Me.Label1.Caption = Me.SpinButton1.Value End Sub
Debaser
View Public Profile
Find all posts by Debaser