Is there any control which allow the user to pick ONLY time (not date)? May be the UltraDateEditor can be set up some way to achieve this.
Here is an example of what I want:
This is a DateTimePicker (from WinForm controls) with a custom formt ("HH:mm") and ShowUpDown set to true.
Thanks,
Diego
Change the FormatProvider property to a country that uses 24hr format (e.g. Bulgaria).
Thanks for the reply!
It worked almost perfect. Now I only need to change the format. It is in 12 hours format and with a.m. / p.m. I've tried seting FormatString to "HH:mm" but didn't work. how can I do that?
Thanks!
Here's the properties you'd need to set for the UltraDateTimeEditor to achieve the same result as you did with the generic MS control:
MaskInput, set this to {time}.
SpinButtonDisplayStyle, set this to Always.
DropDownButtonDisplayStyle, set this to Never.