home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
text
/
skoed
/
arexx
/
nexterror1.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-02-27
|
307b
|
21 lines
/* REXX scrip to advance to next error */
address "SC_SCMSG"
'NEXT'
options results
'FILE'
file = result
'LINE'
line = result
'TEXT'
text = result
options
address SKOED1
if file = "" then
"Msg(No more errors)"
else do
"Load_File("||file||" NODUP)"
"Goto_Line("||line||")"
"Msg("||text||")"
end