Is there any way for the user to pick the time with the date time picker?
I hope to find out soon,
Thx
Rick
Printable View
Is there any way for the user to pick the time with the date time picker?
I hope to find out soon,
Thx
Rick
Welcome to the Forums. :)
Yes, change the Format property to Time. ;)
try this one...
MsgBox(Format(Me.DateTimePicker1.Value, "short time"))
But the user needs to be able to "select" the time first so changing the Format property to Time will give the time display
and the up/down arrows for selections. ;)
Thank you :thumb:
Actually, you need to set the up/down arrows seperately. Changing the Format to Time still allows the user to drop-down a calendar. You need to set the ShowUpDown property to True.
Thats true John. I forgot to mention that one. ;) :)