home *** CD-ROM | disk | FTP | other *** search
- /*******************************************
- *
- * NextError.script
- * by Giovanni Lambiase (C) 1995
- *
- * This Arexx macro jump to Next error in
- * SCMSG list.
- *
- *******************************************/
-
- OPTIONS RESULTS
- OPTIONS FAILAT 31
-
- IF SHOW('PORTS','SC_SCMSG') THEN
- DO
- ADDRESS 'SC_SCMSG'
-
- /* If no errors -> close SCMSG */
- 'TEXT'
- IF RESULT='' THEN
- DO
- 'HIDE'
- END
- ELSE
- DO
- /* Jump to next error */
- 'NEXT'
- 'SELECT'
- END
- END
-