Funktionreferenz


_GUICtrlMonthCal_SetToday

Beschreibung anzeigen in

Setzt die Datumsinformationen für den "heutigen" Tag

#include <GuiMonthCal.au3>
_GUICtrlMonthCal_SetToday ( $hWnd, $iYear, $iMonth, $iDay )

Parameter

$hWnd Control-ID / Handle des Controls
$iYear Jahr
$iMonth Monat
$iDay Tag

Rückgabewert

Keine.

Bemerkungen

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

Verwandte Funktionen

_GUICtrlMonthCal_GetToday

Beispiel

#include "Extras\HelpFileInternals.au3"

#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsStylesConstants.au3>

Example()

Func Example()
    ; Erstellt eine GUI
    GUICreate("Month Calendar: Setzt und ermittelt Heute (v" & @AutoItVersion & ")", 450, 300)
    Local $idMonthCal = GUICtrlCreateMonthCal("", 4, 4, -1, -1, $WS_BORDER, 0x00000000)

    ; Erstellt ein Memo Control
    _MemoCreate(4, 168, 392, 128, 0)
    GUISetState(@SW_SHOW)

    ; Heute ermitteln bzw. setzen
    _GUICtrlMonthCal_SetToday($idMonthCal, @YEAR, 8, 19)
    Local $tToday = _GUICtrlMonthCal_GetToday($idMonthCal)
    _MemoWrite("Today: " & StringFormat("%02d/%02d/%04d", DllStructGetData($tToday, "Month"), _
            DllStructGetData($tToday, "Day"), _
            DllStructGetData($tToday, "Year")))

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example