Share via


MonthCal_GetRange

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

DWORD MonthCal_GetRange(
HWND hwndMC, 
LPSYSTEMTIME lprgSysTimeArray );

Parameters

  • hwndMC
    Handle to a month calendar control.
  • lprgSysTimeArray
    Long pointer to a two-element array of SYSTEMTIME structures that will receive 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
    There is a maximum limit set for the control; lprgSysTimeArray[0] is valid and contains the applicable date information.
  • GDTR_MIN
    There is a minimum limit set for the control; lprgSysTimeArray[1] is valid and contains the applicable date information.

Remarks

Related message: MCM_GETRANGE

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 2.0 and later Commctrl.h   Commctrl.lib

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

SYSTEMTIME

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.