HP Business BASIC/XL Reference Manual - HP 3000 MPE/iX Computer Systems - Edition 1 (32715-90001)

a- 46
the current program has no lines then RUN; Label
will generate this error.
ACTION Be certain that the line label specified exists in the current
program.
------------------------------------------------------------------------------------
1253 MESSAGE Line number is invalid or missing, GET terminated.
CAUSE This occurs in the interpreter only. During the GET of an
ASCII file a line in the file has been encountered which does
not begin with a numeric literal that should correspond to a
line number.
ACTION Use the SYSTEMRUN command from within BASIC to run an editor.
Change the line displayed during the GET so that it begins with
a numeric literal. Save the new version, exit the editor, and
use the GET command to make the ASCII file the current program
file.
------------------------------------------------------------------------------------
1254 MESSAGE Line number would be illegal if renumbered, GET terminated.
CAUSE A GET of a program would result in a line number beyond the
maximum line number in the interpreter, 999999.
ACTION Check the last line number and the range of the lines to be
included in the current program prior to using GET. The
RENUMBER command can create additional space in the interpreter
by reducing the range of the program line numbers before using
GET.
------------------------------------------------------------------------------------
1260 MESSAGE Found 11th named COMMON area in subunit "subunit_name", only 10
are allowed.
CAUSE More than the maximum number of COMMON areas have been declared
in the current MAIN, procedure, or function. The
"subunit_name" is either MAIN or the name of the procedure or
function in which the error occurred.
ACTION Delete one of the named COMMON areas in the specified subunit.
If the variables have to be declared in a COMMON, add them to
one of the named COMMON areas that are already declared or pass
them to the procedure or function as parameters.
------------------------------------------------------------------------------------
1261 MESSAGE Not enough memory available for the existing COMMON
declarations.
CAUSE The total COM area declared in the current main, procedure, or
function exceeds the maximum space allocatable to common
declarations but is less than the total amount of space
allocatable to all declarations.
ACTION Reduce the number of declarations in the COM area to include
only those absolutely necessary for all procedures or functions
that include that COM area. All variables not required in all
can either be declared locally or passed as parameters.
------------------------------------------------------------------------------------
1262 MESSAGE Unable to allocate enough memory for the COMMON variables.
CAUSE HP Business BASIC/XL was unable to allocate enough memory for
the COMMON variables.
ACTION Reduce the number of declarations in the common areas. Reduce
the size of the common area.
------------------------------------------------------------------------------------