Hallo E*PvP ich stehe gerade irgend wie aufm Schlauch D:
Was ist daran falsch ?
Danke :)
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Wecker", 242, 438, 192, 124)
$Label11 = GUICtrlCreateLabel("Uhrzeit", 0, 8, 37, 17)
$Stunden = GUICtrlCreateInput("Stunden", 40, 8, 49, 21)
$Minuten = GUICtrlCreateInput("Min", 104, 8, 25, 21)
$Label2 = GUICtrlCreateLabel(":", 96, 8, 7, 17)
$Label3 = GUICtrlCreateLabel("Erinnerung ", 0, 40, 58, 17)
$Erinerung = GUICtrlCreateInput("An was Wilslt du Erinnert werden ?", 8, 64, 225, 21)
GUICtrlSetLimit(-1, 999)
$Button1 = GUICtrlCreateButton("Start", 0, 88, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Func _Start()
If $Stunden = @HOUR And $Minuten = @MIN Then
MsgBox(1, "ACHTUNG" GUICtrlRead($Erinerung) ")
EndIf
EndFunc ;==>_Start
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_Start
EndSwitch
WEnd
Danke :)