Using an UltraCombo that is databound to a datetime, how do I get the control to display both the date and time instead of just the date (as it does by default)? (not the UltraDateTimeEditor)
I'm not sure why UltraCombo would strip out the time portion. The DateTimeEditor does this by deafult, but the UltraCombo cannot be doing anything specifically with DateTime values - all it could do is call ToString on the value you are binding to. Does the ToString of a DateTime include the time?
Yes, datetime ToString does include the time. A regular winforms combo box shows both date and time when bound to the same property.