Funktionreferenz


_GUICtrlMonthCal_GetMonthRangeMinStr

Beschreibung anzeigen in

Ermittelt Datumsinformationen die das niedrigste Limit des Controls darstellen im Stringformat

#include <GuiMonthCal.au3>
_GUICtrlMonthCal_GetMonthRangeMinStr ( $hWnd [, $sFormat = "%02d/%02d/%04d"] )

Parameter

$hWnd Control-ID / Handle des Controls
$sFormat [optional] StringFormat String der verwendet wird um das Datum zu formatieren

Rückgabewert

Gibt ein Datum in dem festgelegten Format zurück.

Bemerkungen

- - - - - - - - Erklärung der Controls - - - - - - - -

Verwandte Funktionen

_GUICtrlMonthCal_GetMonthRangeMin

Beispiel

#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 niedrigste Limit darstellen", 650, 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