I have 2 UltraDateTimeEditors on my form. I want the first one to automatically default to the first of the month and the second one to default to the last day of the month. How do I do this?
You could do something like:
int year = DateTime.Now.Year;int month = DateTime.Now.Month;this.ultraDateTimeEditor1.Value = new DateTime(year, month, 1);this.ultraDateTimeEditor2.Value = new DateTime(year, month, DateTime.DaysInMonth(year, month));
-Matt