I need to "fix" my script.
The time is jumping back, then forward to the new time.
The exit button in the corner does not work. Can someone help me?
#include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $gui = GUICreate("", 290, 70) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() $sec = ":" & @SEC $time = @hour & ":" & @MIN $label1 = GUICtrlCreateLabel ("" & $time, 10, 10) $label2 = GUICtrlCreateLabel ("" & $sec, 40, 10) Select Case $msg = $GUI_EVENT_CLOSE EndSelect WEnd






