Function Reference


_GUICtrlMonthCal_GetMonthRange

Retrieves date information that represents the high and low display limits

#include <GuiMonthCal.au3>
_GUICtrlMonthCal_GetMonthRange ( $hWnd [, $bPartial = False] )

Parameters

$hWnd Control ID/Handle to the control
$bPartial [optional] Specifies the scope of the range limits to be retrieved:
    True - Preceding and trailing months are included
    False - Only months that are entirely displayed are included

Return Value

Returns a $tagMCMONTHRANGE structure.

Related

$tagMCMONTHRANGE, _GUICtrlMonthCal_GetMonthRangeMax, _GUICtrlMonthCal_GetMonthRangeMin

Example

#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>

Global $g_idMemo

Example()

Func Example()
        ; Create GUI
        GUICreate("Month Calendar Get Month Range (v" & @AutoItVersion & ")", 420, 300)
        Local $idMonthCal = GUICtrlCreateMonthCal("", 4, 4, -1, -1, BitOR($WS_BORDER, $MCS_MULTISELECT), 0x00000000)

        ; Create memo control
        $g_idMemo = GUICtrlCreateEdit("", 4, 168, 412, 128, 0)
        GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
        GUISetState(@SW_SHOW)

        ; Get month range
        Local $tRange = _GUICtrlMonthCal_GetMonthRange($idMonthCal)
        MemoWrite("Month range minimum: " & StringFormat("%02d/%02d/%04d", DllStructGetData($tRange, "MinMonth"), _
                        DllStructGetData($tRange, "MinDay"), _
                        DllStructGetData($tRange, "MinYear")))
        MemoWrite("Month range maximum: " & StringFormat("%02d/%02d/%04d", DllStructGetData($tRange, "MaxMonth"), _
                        DllStructGetData($tRange, "MaxDay"), _
                        DllStructGetData($tRange, "MaxYear")))

        ; Loop until the user exits.
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>Example

; Write message to memo
Func MemoWrite($sMessage)
        GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite