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

a- 73
-----------------------------------------------------------------------------
MESSAGE A number between 0 and 255 must follow ' in the string.
CAUSE A single quote was encountered in a string literal and was not
followed by a digit.
ACTION Determine the correct ASCII character number for the desired
character and place it after the '.
-----------------------------------------------------------------------------
MESSAGE Unknown character " " found (ASCII nnn).
CAUSE A character was encountered which was not in the set of legal
HP Business BASIC/XL characters.
ACTION If the character was entered inadvertently, retype the line
(using REDO is not recommended). If the illegal character is
part of a string, use the singe quote (') notation to specify
the character.
-----------------------------------------------------------------------------
MESSAGE Parser stack overflow. Statement too complex.
CAUSE The statement entered was so complex that HP Business BASIC/XL
was unable to process it without overflowing internal tables.
ACTION Break up the line into at least two less complex statements.
-----------------------------------------------------------------------------
MESSAGE This statement is not allowed in this context.
CAUSE A statement has been entered in a place in the program where it
cannot legally go. For example, a SUB statement was entered in
the middle of another subunit or a GLOBAL statement was used in
a subunit other than MAIN.
ACTION Add new SUBs and multi-line DEFs only at the end of the
program. Use GLOBAL statements only in MAIN.
-----------------------------------------------------------------------------
MESSAGE Could not create number from input line text.
CAUSE A statement was entered with an invalid line number.
ACTION Use an integer line number in the range [1, 999999].
-----------------------------------------------------------------------------
MESSAGE OPTION BASE must use 0 or 1.
CAUSE An OPTION BASE statement was entered specifying a base other
than zero or one.
ACTION If arrays are to have lower bounds other than zero or one,
those bounds must be explicitly stated in the array
declaration. Only zero or one is specified as the default
lower bound with the OPTION statement or HPBBCNFG.Pub.Sys.
-----------------------------------------------------------------------------
MESSAGE Whole array reference illegal in this context.
CAUSE A whole array reference (an array name followed by an asterisk
with parentheses) has been used where only a scalar or simple
data item is allowed.
ACTION Use the MAT statements to manipulate whole arrays.
-----------------------------------------------------------------------------
MESSAGE Variably dimensioned arrays and strings illegal in MAIN
program.