spin button fractions

maxx_daddy

Board Regular
Joined
Dec 3, 2010
Messages
74
Ok, so I figured it out, but I am guessing there has to be a more efficient way.
I am trying to have spin buttons for inches and fractions on a user form. Is there a better way than having a hidden text box? I wasn't able to store the value properly and it kept failing.
Open to suggestions.

Thanks!!

Code:
Private Sub SpinButton2_SpinUp()
If TextBox3.Text = 0.9375 Then
TextBox3.Text = 0
Else
TextBox3.Text = TextBox3.Text + 0.0625
End If
testval = Excel.WorksheetFunction.Text(TextBox3.Text, "# ??/??") & """"
TextBox2.Text = testval


End Sub


Private Sub SpinButton2_SpinDown()
If TextBox3.Text = 0 Then
TextBox3.Text = 0.9375
Else
TextBox3.Text = TextBox3.Text - 0.0625
End If
testval = Excel.WorksheetFunction.Text(TextBox3.Text, "# ??/??")
TextBox2.Text = testval
End Sub

Note, the above code covers the fractions, the whole numbers is easy enough.
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,214,786
Messages
6,121,548
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top