There is a way to suspend the execution or prevent the execution of Event routine ? like iSleep to the trap routine ?
Thanks !
There is a way to suspend the execution or prevent the execution of Event routine ? like iSleep to the trap routine ?
Thanks !
Conditional logic in the routine to determine what to do?
It was my second option if there isn’t a way to sleep the event.
IF conditionX = TRUE THEN
do stuff here;
ELSE
! do nothing
optional: RETURN;
ENDIF