Wie kann man eine Schleife alle 58 sek aktuallisieren ohne das ganze
Programm zu blockieren.Also ohne Delay(58000).
Vielen Dank im voraus
Cu Goofy



Code: Alles auswählen
#Intervall = 58000 ; 58 Sekunden
Zeit = ElapsedMilliseconds()
Repeat
If ElapsedMilliseconds() > Zeit + #Intervall
Zeit = ElapsedMilliseconds()
Debug "Es ist Zeit"
EndIf
ForEver
End