设置月日历控件中周的第一天
#Include <GuiMonthCal.au3>
_GUICtrlMonthCal_SetFirstDOW($hWnd, $sDay)
$hWnd | 控件句柄 |
$sDay | 使用下面的格式: 0 或 "Monday" 星期一 1 或 "Tuesday" 星期二 2 或 "Wednesday" 星期三 3 或 "Thursday" 星期四 4 或 "Friday" 星期五 5 或 "Saturday" 星期六 6 或 "Sunday" 星期日 |
成功: | 返回以前周的第一天 |
失败: | 返回 -1 |
#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
$Debug_MC = False ; Check ClassName being passed to MonthCal functions, set to True and use a handle to another control to see it work
Global $iMemo
_Main()
Func _Main()
Local $hMonthCal
; 创建 GUI
GUICreate("Month Calendar Set First DOW", 400, 300)
$hMonthCal = GUICtrlCreateMonthCal("", 4, 4, -1, -1, $WS_BORDER, 0x00000000)
; 创建 memo 控件
$iMemo = GUICtrlCreateEdit("", 4, 168, 392, 128, 0)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
GUISetState()
; Get/Set first DOW
_GUICtrlMonthCal_SetFirstDOW($hMonthCal, 0)
MemoWrite("First DOW : " & _GUICtrlMonthCal_GetFirstDOW($hMonthCal))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main
; 写入消息到 memo
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite