HP Business BASIC/XL Reference Manual - HP 3000 MPE/iX Computer Systems - Edition 1 (32715-90001)
a- 69
** MESSAGE File file_name has invalid record
size. Expected 128W records ( 5383 )
CAUSE The object code file specified in the
command to run the compiler is an RL
file with an NMRL file code that does
not have 128 word records.
ACTION Check the record length for the file
named file_name or the file specified
by you as the object code file.
BBCOBJ is the file that the compiler
uses after it has been equated to
your file. Build a new RL file using
the linkeditor.
------------------------------------------------------------------------------------
2050 MESSAGE WARNING 2050: TRACE or PAUSE statement found and ignored.
CAUSE The compiler did not generate any code for a TRACE or PAUSE
statement.
ACTION None. These statements are used primarily for debugging.
------------------------------------------------------------------------------------
2051 MESSAGE WARNING 2051: Multiple copy of subunit "sub-name" found and not
compiled.
CAUSE Multiple copies of a subunit that have the same name were found
in the program.
ACTION If a program has more than one subunit with the same name, only
the one with the lowest line number is compiled. To compile a
higher-numbered subunit, remove the lower-numbered one with the
same name.
------------------------------------------------------------------------------------
2053 MESSAGE WARNING 2053: Noncompilable statement; run-time error will
result.
CAUSE Any statement that attempts to modify an HP Business BASIC/XL
program at run time or requires the interpreter environment
will result in a run-time error. The following statements
generate this warning.
COMMAND
GET
MERGE
SCRATCH
DEFAULT
GETSUB
RESAVE
SECURE
DELETE
LINK
ACTION The following change will prevent the execution of a
non-compilable statement in the compiled program:
100 GET "abc"is changed to 100 IF INTERPRETED THEN GET "abc"
------------------------------------------------------------------------------------
2054 MESSAGE WARNING 2054: "array-name"() may be redimensioned despite NO