VBA Userform Time Picker

gman87

New Member
Joined
Feb 20, 2015
Messages
8
I am not very good at this but I'm trying to make a Time Picker using VBA userform.

I have 2 spin buttons, 'spinbutton1' to control hours and 'spinbutton2' for minutes, and textbox named 'tbtime'

I am having trouble because I need it to show as 24hr time, I also need it to not change date when I approach midnight

here is what I have so far that does not work that great

Code:
Private Sub SpinButton1_SpinDown()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("h", -1, mytime)
If Me.tbtime = CDate("00:00") Then
Me.tbtime = CDate("23:00")
End If

End Sub

Private Sub SpinButton1_Spinup()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("h", 1, mytime)
If Me.tbtime = CDate("23:00") Then
Me.tbtime = CDate("00:00")
End If

End Sub

Private Sub SpinButton2_SpinDown()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("n", -1, mytime)

If Me.tbtime = CDate("00:00") Then
Me.tbtime = CDate("00:59")
End If


End Sub

Private Sub SpinButton2_Spinup()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("n", 1, mytime)

If Me.tbtime = CDate("23:59") Then
Me.tbtime = CDate("00:00")
End If

End Sub

Thank you all!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Solved!

I worked out putting a second textbox - TBtime2 and making tbtime1 not visible

Code:
Private Sub SpinButton1_SpinDown()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("h", -1, mytime)
tbtime2 = Format(Me.tbtime, "HH:mm")
End Sub

Private Sub SpinButton1_SpinUp()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("h", 1, mytime)
tbtime2 = Format(Me.tbtime, "HH:mm")
End Sub

Private Sub SpinButton2_SpinDown()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("n", -1, mytime)
tbtime2 = Format(Me.tbtime, "HH:mm")
End Sub

Private Sub SpinButton2_Spinup()
mytime = CDate(Me.tbtime)
Me.tbtime = DateAdd("n", 1, mytime)
tbtime2 = Format(Me.tbtime, "HH:mm")
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,299
Messages
6,124,132
Members
449,143
Latest member
LightArisen

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