检索当前系统允许的最低和最高时间值,返回相关数据的数组.
#Include <GuiDateTimePicker.au3>
_GUICtrlDTP_GetRange($hWnd)
$hWnd | 控件句柄 |
成功: | 返回如下格式的数组: |
[ 0] - True,如果最小值有效,否则为 false | |
[ 1] - 最小年份值 | |
[ 2] - 最小月份值 | |
[ 3] - 最小日值 | |
[ 4] - 最小小时值 | |
[ 5] - 最小分钟值 | |
[ 6] - 最小秒值 | |
[ 7] - 如果 True,则最大值有效,否则为 false | |
[ 8] - 最大年份值 | |
[ 9] - 最大月份值 | |
[10] - 最大日值 | |
[11] - 最大小时值 | |
[12] - 最大分钟值 | |
[13] - 最大秒值 |
#include <GUIConstantsEx.au3>
#include <GuiDateTimePicker.au3>
$Debug_DTP = False 检查传递给 DTP 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
Global $iMemo, $aRange[14] = [True, @YEAR, 1, 1, 21, 45, 32, True, @YEAR, 12, 31, 23, 59, 59]
_Main()
Func _Main()
Local $hDTP
; 创建 GUI
GUICreate("DateTimePick Get Range", 400, 300)
$hDTP = GUICtrlGetHandle(GUICtrlCreateDate("", 2, 6, 190))
$iMemo = GUICtrlCreateEdit("", 2, 32, 396, 266, 0)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
GUISetState()
; 设置显示的格式
_GUICtrlDTP_SetFormat($hDTP, "ddd MMM dd, yyyy hh:mm ttt")
; 设置日期范围
_GUICtrlDTP_SetRange($hDTP, $aRange)
; 显示日期范围
$aRange = _GUICtrlDTP_GetRange($hDTP)
MemoWrite("Minimum date: " & GetDateStr())
MemoWrite("Maximum date: " & GetDateStr(7))
MemoWrite("Minimum time: " & GetTimeStr(4))
MemoWrite("Maximum time: " & GetTimeStr(11))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main
; 返回日期部分
Func GetDateStr($iOff = 0)
Return StringFormat("%02d/%02d/%04d", $aRange[$iOff + 2], $aRange[$iOff + 3], $aRange[$iOff + 1])
EndFunc ;==>GetDateStr
; 返回时间部分
Func GetTimeStr($iOff = 0)
Return StringFormat("%02d:%02d:%02d", $aRange[$iOff], $aRange[$iOff + 1], $aRange[$iOff + 2])
EndFunc ;==>GetTimeStr
; 写入一行到 memo 控件
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite