|
|
|
|
|
Finaliza la ejecución de un Timer desencadenado por TimerSys. // Procedure used to display the time in EDT_TIME1 on a regular basis PROCEDURE Display_Time() EDT_Time1 = TimeSys() // Process when opening the window // Display_Time will be automatically called every second TimerNum is int TimerNum = TimerSys("Display_Time", 100, 1) IF TimerNum = 0 THEN Error("Unable to create the timer") END
// Stop the timer during the click on a "BTN_StopTimer" button EndTimerSys(TimerNum)
Sintaxis
EndTimerSys([<Timer number>])
<Timer number>: Entero opcional Número del Timer a destruir (devuelto por TimerSys). Si se especifica este número, el temporizador seleccionado se interrumpe. La función no tiene efecto si el Timer no existe o si ya se ha interrumpido.. Si no se especifica este número y si se utiliza EndTimerSys en el código de un procedimiento llamado por un Timer, éste se interrumpe. De lo contrario, la función EndTimerSys no tiene ningún efecto.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|