Posted 04 Dec 2017 Link to this post
Is it possible to use one RadDateTimePicker and set it up for a range of seven days?
So, lets say the control says DateTime.Today is 12/1/2017, and I want a start date of seven days prior to this date. How can I do this?
C#
Thanks,
Posted 05 Dec 2017 Link to this post
radDateTimePicker1.MinDate = DateTime.Now.AddDays(-7);
radDateTimePicker1.MaxDate = DateTime.Now;
Posted 05 Dec 2017 in reply to Dimitar Link to this post