Note: ABL named events are completely different from the key function, mouse, widget, and direct manipulation events described in the “Handle-based Object Events Reference” section. They are also different from the class events described in the “Class Events Reference” section.
SUBSCRIBE PROCEDURE subscriber-handle TO event-nameIN publisher-handle ANYWHERERUN-PROCEDURE local-internal-procedure NO-ERRORPROCEDURE subscriber-handleThe PROCEDURE option lets one procedure create a subscription on behalf of another. For example, if you want procedure A to create a subscription on behalf of procedure B, set subscriber-handle to the procedure handle of B.TO event-nameIN publisher-handleSubscribes to the named events published by publisher-handle.If publisher-handle is not a valid procedure or widget handle at the time the SUBSCRIBE statement executes, the AVM reports a run-time error unless you specify the NO-ERROR option.RUN-PROCEDURE local-internal-procedureA quoted string or character expression representing the name of an internal procedure that resides within the subscribing program. The AVM runs local-internal-procedure when the named event occurs.Suppresses ABL errors or error messages that would otherwise occur and diverts them to the ERROR-STATUS system handle. If an error occurs, the action of the statement is not done and execution continues with the next statement. If the statement fails, any persistent side-effects of the statement are backed out. If the statement includes an expression that contains other executable elements, like methods, the work performed by these elements may or may not be done, depending on the order the AVM resolves the expression elements and the occurrence of the error.For the SUSCRIBE statement with NO-ERROR, this option tells the AVM not to report a run-time error if publisher-handle or subscriber-handle is not a valid procedure handle, or if the AVM cannot evaluate an event-name expression.
Check if the ERROR-STATUS:NUM-MESSAGES attribute is greater than zero to see if the AVM generated error messages. ABL handle methods used in a block without a CATCH end block treat errors as warnings and do not raise ERROR, do not set the ERROR-STATUS:ERROR attribute, but do add messages to the ERROR-STATUS system handle. Therefore, this test is the better test for code using handle methods without CATCH end blocks. ABL handle methods used in a block with a CATCH end block raise ERROR and add messages to the error object generated by the AVM. In this case, the AVM does not update the ERROR-STATUS system handle.
Use ERROR-STATUS:GET-MESSAGE( message-num ) to retrieve a particular message, where message-num is 1 for the first message.
If event-name is a string containing spaces or is otherwise not a standard ABL name, use one of the following techniques:
When you define local-internal-procedure, put its name in quotes, as in the following example:
PROCEDURE "spaced event":
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |