Ermittelt Datumsinformationen die das höchste Limit des Controls darstellen im Stringformat
#include <GuiMonthCal.au3>
_GUICtrlMonthCal_GetMonthRangeMaxStr ( $hWnd [, $sFormat = "%02d/%02d/%04d"] )
$hWnd | Control-ID / Handle des Controls |
$sFormat | [optional] StringFormat String der verwendet wird um das Datum zu formatieren. |
- - - - - - - - Erklärung der Controls - - - - - - - -
_GUICtrlMonthCal_GetMonthRangeMax
#include <GuiConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
Global $g_idMemo
Example()
Func Example()
Local $idMonthCal
; Erstellt eine GUI
GUICreate("Month Calendar: Ermittelt Datumsinformationen die das höchste Limit darstellen", 600, 300)
$idMonthCal = GUICtrlCreateMonthCal("", 4, 4, -1, -1, BitOR($WS_BORDER, $MCS_MULTISELECT), 0x00000000)
; Erstellt ein Memo Control
$g_idMemo = GUICtrlCreateEdit("", 4, 168, 392, 128, 0)
GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
GUISetState(@SW_SHOW)
; Ermittelt Datumsinformationen die das höchste Limit darstellen
MemoWrite("Niedrigstes Limit: " & _GUICtrlMonthCal_GetMonthRangeMinStr($idMonthCal))
MemoWrite("Höchstes Limit: " & _GUICtrlMonthCal_GetMonthRangeMaxStr($idMonthCal))
; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example
; Schreibt eine Nachricht in das Memo
Func MemoWrite($sMessage)
GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite