Solution |
|
These messages are being displayed on the screen because the
error messages are written to the STDLIST, which by default is the terminal. When a VPLUS program
is run, the error message will be displayed in the unprotected areas
of the terminal.
To redirect the STDLIST so that the messages will be displayed to the printer,
use these steps:
:FILE LP;DEV=LP
:RUN PROG;STDLIST=*LP
To redirect the STDLIST so the the messages will be written
to file, use these steps:
:BUILD OUTFILE;REC=-132,,F,ASCII;DISC=10000
:RUN PROG;STDLIST=OUTFILE