M
Matt Gilarde
Guest
The triggers are scoped to the procedure in which they are defined and they go out of scope when procedure ArmaBrowse ends. To fix this you need to move the trigger code into procedures and run the procedures from the TRIGGERS block with PERSISTENT RUN. For example, add a procedure like this: PROCEDURE ArmaBrowseReturnTrigger: MESSAGE "return" VIEW-AS ALERT-BOX. END. And change the TRIGGERS block like this: TRIGGERS: ON RETURN ANYWHERE PERSISTENT RUN ArmaBrowseReturnTrigger. [... other triggers ...] END TRIGGERS.
Continue reading...
Continue reading...