Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to figure out the first & last visible dates in TMonthCalendar ? As circled in green

Thanks !

share|improve this question

1 Answer

Use MonthCal_GetMonthRange:

Retrieves date information (using SYSTEMTIME structures) that represents the high and low limits of a month calendar control's display.

var
  times: array[0..1] of TSystemTime;
......
MonthCal_GetMonthRange(MonthCalendar1.Handle, GMR_DAYSTATE, @times[0]);

After the call, times[0] is a system time record containing the first displayed day on the calendar, and times[1] describes the last displayed day.

For a calendar like the one in your screenshot, this would return 25th June and 7th October. If you passed 0 instead of GMR_DAYSTATE then you would get 1st July and 30th September.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.