TMSFMXCalendar show range (Date-from ... Date-to)

Hi TMS,

User can multdayselect a range, say aug.25 to sept 6.
This is put in a database.
Later user wants to change the date range.
I know how to set a selected day.
How to show the current date range?

tia!
John

Hi,

You can use the shift state to initialize a date range selection, as if you would select it via interaction:

  TMSFMXCalendar1.MultiSelect := True;
  TMSFMXCalendar1.SelectDate(Now, []);
  TMSFMXCalendar1.SelectDate(Now + 10, [ssShift]);

1 Like

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.