回复 1# xulinghai
是我理解錯誤嗎??
用 說明的範例 只加了一行 不就可以??
_GUICtrlMonthCal_SetCurSel($hMonthCal, 2015, 3, @MDAY)
#include <GuiConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
$Debug_MC = False ; 檢查傳遞給 MonthCal 函數的控制項類名, 設置為 True,並使用另一個控制項控制碼, 查看它的工作
Global $hMonthCal
_Main()
Func _Main()
Local $hGUI
; 創建 GUI
$hGUI = GUICreate("月(日)曆 UDF 函數演示", 400, 350)
$hMonthCal = _GUICtrlMonthCal_Create($hGUI, 4, 4, $WS_BORDER)
_GUICtrlMonthCal_SetCurSel($hMonthCal, 2015, 3, @MDAY)
GUISetState()
GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")
; 迴圈到用戶退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main
Func WM_NOTIFY($hWnd, $iMsg, $iwParam, $ilParam)
#forceref $hWnd, $iMsg, $iwParam
Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $tInfo
$tNMHDR = DllStructCreate($tagNMHDR, $ilParam)
$hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom"))
$iIDFrom = DllStructGetData($tNMHDR, "IDFrom")
$iCode = DllStructGetData($tNMHDR, "Code")
Switch $hWndFrom
Case $hMonthCal
Switch $iCode
Case $MCN_GETDAYSTATE ; 控制項發送請求相關個別日子應該如何顯示的資訊
$tInfo = DllStructCreate($tagNMDAYSTATE, $ilParam)
_DebugPrint("$MCN_GETDAYSTATE" & @LF & "--> 控制項控制碼:" & @TAB & $hWndFrom & @LF & _
"--> 控制項 ID:" & @TAB & $iIDFrom & @LF & _
"--> 操作代碼:" & @TAB & $iCode & @LF & _
"--> 年:" & @TAB & DllStructGetData($tInfo, "Year") & @LF & _
"--> 月:" & @TAB & DllStructGetData($tInfo, "Month") & @LF & _
"--> 周:" & @TAB & DllStructGetData($tInfo, "DOW") & @LF & _
"--> 日:" & @TAB & DllStructGetData($tInfo, "Day") & @LF & _
"--> 時:" & @TAB & DllStructGetData($tInfo, "Hour") & @LF & _
"--> 分:" & @TAB & DllStructGetData($tInfo, "Minute") & @LF & _
"--> 秒:" & @TAB & DllStructGetData($tInfo, "Second") & @LF & _
"--> 毫秒:" & @TAB & DllStructGetData($tInfo, "MSecond") & @LF & _
"--> 日顯示狀態:" & @TAB & DllStructGetData($tInfo, "DayState") & @LF & _
"--> p日顯示狀態:" & @TAB & DllStructGetData($tInfo, "pDayState"))
; 位址陣列的 MONTHDAYSTATE(DWORD的位欄位,保存一個月內每天的狀態)
; 每個位數(1 到 31)代表一月內對應天的狀態
; 如果有一個數位是啟動的,相應的天將顯示黑粗體,否則將不會重點顯示.
; 沒有返回值
Case $MCN_SELCHANGE ; 發送控制項當前選定的日期;或日期範圍的變化等消息
$tInfo = DllStructCreate($tagNMSELCHANGE, $ilParam)
_DebugPrint("$MCN_SELCHANGE" & @LF & "--> 控制項控制碼:" & @TAB & $hWndFrom & @LF & _
"--> 控制項 ID:" & @TAB & $iIDFrom & @LF & _
"--> 操作代碼:" & @TAB & $iCode & @LF & _
"--> 請求年:" & @TAB & DllStructGetData($tInfo, "BegYear") & @LF & _
"--> 請求月:" & @TAB & DllStructGetData($tInfo, "BegMonth") & @LF & _
"--> 請求周:" & @TAB & DllStructGetData($tInfo, "BegDOW") & @LF & _
"--> 請求日:" & @TAB & DllStructGetData($tInfo, "BegDay") & @LF & _
"--> 請求時:" & @TAB & DllStructGetData($tInfo, "BegHour") & @LF & _
"--> 請求分:" & @TAB & DllStructGetData($tInfo, "BegMinute") & @LF & _
"--> 請求秒:" & @TAB & DllStructGetData($tInfo, "BegSecond") & @LF & _
"--> 請求毫秒:" & @TAB & DllStructGetData($tInfo, "BegMSeconds") & @LF & _
"--> 終止年:" & @TAB & DllStructGetData($tInfo, "EndYear") & @LF & _
"--> 終止月:" & @TAB & DllStructGetData($tInfo, "EndMonth") & @LF & _
"--> 終止周:" & @TAB & DllStructGetData($tInfo, "EndDOW") & @LF & _
"--> 終止日:" & @TAB & DllStructGetData($tInfo, "EndDay") & @LF & _
"--> 終止時:" & @TAB & DllStructGetData($tInfo, "EndHour") & @LF & _
"--> 終止分:" & @TAB & DllStructGetData($tInfo, "EndMinute") & @LF & _
"--> 終止秒:" & @TAB & DllStructGetData($tInfo, "EndSecond") & @LF & _
"--> 終止毫秒:" & @TAB & DllStructGetData($tInfo, "EndMSeconds"))
; 沒有返回值
Case $MCN_SELECT ; 發送使用者在控制項內作出明確的選擇消息
$tInfo = DllStructCreate($tagNMSELCHANGE, $ilParam)
_DebugPrint("$MCN_SELECT" & @LF & "--> 控制項控制碼:" & @TAB & $hWndFrom & @LF & _
"--> 控制項 ID:" & @TAB & $iIDFrom & @LF & _
"--> 操作代碼:" & @TAB & $iCode & @LF & _
"--> 請求年:" & @TAB & DllStructGetData($tInfo, "BegYear") & @LF & _
"--> 請求月:" & @TAB & DllStructGetData($tInfo, "BegMonth") & @LF & _
"--> 請求周:" & @TAB & DllStructGetData($tInfo, "BegDOW") & @LF & _
"--> 請求日:" & @TAB & DllStructGetData($tInfo, "BegDay") & @LF & _
"--> 請求時:" & @TAB & DllStructGetData($tInfo, "BegHour") & @LF & _
"--> 請求分:" & @TAB & DllStructGetData($tInfo, "BegMinute") & @LF & _
"--> 請求秒:" & @TAB & DllStructGetData($tInfo, "BegSecond") & @LF & _
"--> 請求毫秒:" & @TAB & DllStructGetData($tInfo, "BegMSeconds") & @LF & _
"--> 終止年:" & @TAB & DllStructGetData($tInfo, "EndYear") & @LF & _
"--> 終止月:" & @TAB & DllStructGetData($tInfo, "EndMonth") & @LF & _
"--> 終止周:" & @TAB & DllStructGetData($tInfo, "EndDOW") & @LF & _
"--> 終止日:" & @TAB & DllStructGetData($tInfo, "EndDay") & @LF & _
"--> 終止時:" & @TAB & DllStructGetData($tInfo, "EndHour") & @LF & _
"--> 終止分:" & @TAB & DllStructGetData($tInfo, "EndMinute") & @LF & _
"--> 終止秒:" & @TAB & DllStructGetData($tInfo, "EndSecond") & @LF & _
"--> 終止毫秒:" & @TAB & DllStructGetData($tInfo, "EndMSeconds"))
; 沒有返回值
EndSwitch
EndSwitch
Return $GUI_RUNDEFMSG
EndFunc ;==>WM_NOTIFY
Func _DebugPrint($s_text, $line = @ScriptLineNumber)
ConsoleWrite( _
"!===========================================================" & @LF & _
"+======================================================" & @LF & _
"--> 行(" & StringFormat("%04d", $line) & "):" & @TAB & $s_text & @LF & _
"+======================================================" & @LF)
EndFunc ;==>_DebugPrint
|