Does anyone know if there is a component or any code to have a textbox like the one for setting the time?
Printable View
Does anyone know if there is a component or any code to have a textbox like the one for setting the time?
You could make your own, it's not too hard:
Code:Private Sub Text1_Change()
Static Olddate As Date
If IsDate(Text1) Then
Olddate = Text1
Else
Text1 = Olddate
End If
End Sub
I was bored so I made one, you can download it from my site
Thanks for the component. It is awesome. Just one suggestion for it is to have it change the times when you press up or down. But anyway thanks, Its gonna be a big help.