Hallo!
I have got a ultradatetimeeditor with mask input "hh:mm".
I know, I can set the value to the actual time with
ultradatetimeeditor1.value = date.now
But:
How can I set the value to a standard value to a special time, e.g. 09:00?
Thank you
Marco
Hello,
Thank you, that's it.
Best regards
Probably you need to do something like the following:
DateTime dt = new DateTime(2010,11,03,9,0,0); ultraDateTimeEditor1.Value = dt;
Please let me know if you have any further questions.
Could you give me a code example?
The DateTime struct has a constructor that takes hours, minutes, and seconds.