Function Reference


_GUICtrlDTP_SetRange

Sets the current minimum and maximum allowable system times

#include <GuiDateTimePicker.au3>
_GUICtrlDTP_SetRange ( $hWnd, ByRef $aRange )

Parameters

$hWnd Handle to the control
$aRange Array formatted as follows:
    [ 0] - True if Min data is to be set, otherwise False
    [ 1] - Min Year
    [ 2] - Min Month
    [ 3] - Min Day
    [ 4] - Min Hour
    [ 5] - Min Minute
    [ 6] - Min Second
    [ 7] - True if Max data is to be set, otherwise False
    [ 8] - Max Year
    [ 9] - Max Month
    [10] - Max Day
    [11] - Max Hour
    [12] - Max Minute
    [13] - Max Second

Return Value

Success: True.
Failure: False.

Related

_GUICtrlDTP_GetRange

Example

#include <GUIConstantsEx.au3>
#include <GuiDateTimePicker.au3>

Global $g_idMemo, $g_aRange[14] = [True, @YEAR, 1, 1, 21, 45, 32, True, @YEAR, 12, 31, 23, 59, 59]

Example()

Func Example()
        ; Create GUI
        GUICreate("DateTimePick Get/Set Range (v" & @AutoItVersion & ")", 400, 300)
        Local $hDTP = GUICtrlGetHandle(GUICtrlCreateDate("", 2, 6, 190))
        $g_idMemo = GUICtrlCreateEdit("", 2, 32, 396, 266, 0)
        GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
        GUISetState(@SW_SHOW)

        ; Set the display format
        _GUICtrlDTP_SetFormat($hDTP, "ddd MMM dd, yyyy hh:mm ttt")

        ; Set date range
        _GUICtrlDTP_SetRange($hDTP, $g_aRange)

        ; Display date range
        $g_aRange = _GUICtrlDTP_GetRange($hDTP)
        MemoWrite("Minimum date: " & GetDateStr(0))
        MemoWrite("Maximum date: " & GetDateStr(7))
        MemoWrite("Minimum time: " & GetTimeStr(4))
        MemoWrite("Maximum time: " & GetTimeStr(11))

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

; Returns the date portion
Func GetDateStr($iOff = 0)
        Return StringFormat("%02d/%02d/%04d", $g_aRange[$iOff + 2], $g_aRange[$iOff + 3], $g_aRange[$iOff + 1])
EndFunc   ;==>GetDateStr

; Returns the time portion
Func GetTimeStr($iOff = 0)
        Return StringFormat("%02d:%02d:%02d", $g_aRange[$iOff], $g_aRange[$iOff + 1], $g_aRange[$iOff + 2])
EndFunc   ;==>GetTimeStr

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