MCM_GETRANGE (Windows CE 5.0)

Send Feedback

This message retrieves the minimum and maximum allowable dates set for a month calendar control.

MCM_GETRANGE wParam= 0;lParam = (LPARAM)(LPSYSTEMTIME) lprgSysTimeArray;

Parameters

  • wParam
    Not used.
  • lprgSysTimeArray
    Long pointer to a two-element array of SYSTEMTIME structures that receives the date limit information. The minimum limit is set in lprgSysTimeArray[0], and lprgSysTimeArray[1] receives the maximum limit. If either element is set to all zeros, then no corresponding limit is set for the month calendar control. The time members of these structures are not modified.

Return Values

Returns a DWORD that can be zero (no limits are set) or a combination of the following values that specify limit information:

  • GDTR_MAX
    A maximum limit is set for the control; lprgSysTimeArray[0] is valid and contains the applicable date information.
  • GDTR_MIN
    A minimum limit is set for the control; lprgSysTimeArray[1] is valid and contains the applicable date information.

Remarks

Related macro:MonthCal_GetRange

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Commctrl.h.

See Also

SYSTEMTIME

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.