Hello,
I have an ultracalendarcombo and I need to set a dynamic Format for my date and hour. It will depends on the Culture defined on my machine.
I set the format to {date}{time}. Is that right?
Thank you.
Best regards,
Maria
Hello Maria,
I believe that for your scenario you could use the following code line in order to achieve what you desire:
ultraCalendarCombo1.Format = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.FullDateTimePattern;
Please try this and let me know if it suits your needs.
This code solved my problem. Thank you.