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

a- 42
CAUSE The quoted string literal or the value of the string expression
following COMMAND cannot begin with a numeric value.
ACTION Change the string so that it begins with a character in the set
[a..z] or [A..Z].
------------------------------------------------------------------------------------
1230 MESSAGE Tried to delete current line while there are still line ranges
left.
CAUSE A program that deletes the current line has been run. For
example:
10 DELETE 10,20
20 PRINT "line to delete"
ACTION Do not include the current line in the range of lines to be
deleted.
------------------------------------------------------------------------------------
1231 MESSAGE Not enough data space available to start GET SUB.
CAUSE The total amount of space available for the current program has
been exhausted. You may be able to do your own garbage
collection to condense space.
ACTION Since you are trying to do a GET SUB from a BASIC SAVE
formatted file, you should do garbage collection on:
1. The original current program file if it is stored in the
BASIC SAVE file format.
2. All previous files involved in GET SUB commands or
statements from which procedures or functions that are part of
the current program at the time of the error were obtained. In
order to do the actual garbage collection, you will need to do
a GET, SAVE LIST, GET, and RESAVE sequence for each of the
above files:
GET "original_filename"
SAVE LIST "new_filename"
GET "new_filename"
RESAVE "original_filename"
You can then PURGE "new_filename" and repeat the sequence with
the next file.
ACTION If you obtained this message while running a program, then the
run-time data structures used to store the values of variables
might not be allocatable because of space constraints. Try to
reduce the size of large arrays or eliminate unnecessary or
unused variables.
------------------------------------------------------------------------------------
1232 MESSAGE Could not renumber subunit during GET SUB. Last subunit
removed.
CAUSE Renumbering the procedure or function to be part of the current
program would result in a line number greater than the maximum
line number, 999999.
ACTION Use RENUMBER to increase the number of available line numbers
in the current program before the GET SUB statement or command.
Use a different first line number to begin the numbering of the
new function or procedure in the current program.
Use a smaller line increment in the GET SUB statement or
command so that the entire procedure or function fits in the