L
Laura Stern
Guest
Re the post by cwright on 9/21 @ 14:55: Yes, if there is a FINALLY block associated with the block that has a CATCH block for STOP, it will execute. This is similar to what happens today with this code - the finally will run: /* You shouldn't need the ON ERROR part, but currently you do to even compile the FINALLY block */ DO ON ERROR UNDO, LEAVE ON STOP UNDO, LEAVE: STOP. FINALLY: MESSAGE "Finally" VIEW-AS ALERT-BOX INFORMATION BUTTONS OK. END. END.
Continue reading...
Continue reading...