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

a- 72
CAUSE This is a substitute message for error number 68. One or more
of the clauses following an HP Business BASIC/XL database
keyword is missing.
ACTION Check the syntax of the database statement in the Help Catalog
or the
HP Business BASIC/XL Reference Manual
to be certain that
you are using the correct syntax.
-----------------------------------------------------------------------------
MESSAGE The line number is not between 1 and 999999.
CAUSE This is a substitute message for error number 68. The line
number associated with GOTO, CONTINUE, BEGIN REPORT, GOSUB, or
CONVERT, or the line number used in a command such as SAVE,
FIND, or GET is not in the line range [1, 999999].
ACTION Use a line number in the range [1, 999999].
-----------------------------------------------------------------------------
MESSAGE This statement is not allowed in a COMMAND statement.
CAUSE This is a substitute message for error number 68. Illegal
syntax in a COMMAND statement. For example
10 COMMAND "if a then input b"
The error will only be generated with command strings that
contain the following keywords: FLUSH INPUT, ENTER, INPUT,
LENTER, ACCEPT, COMMAND, LINPUT, MAT INPUT, MAT READ, PAUSE, or
TINPUT.
ACTION Modify the quoted string literal or the value of the string
variable following the COMMAND keyword so that it does not
include any of the above keywords.
-----------------------------------------------------------------------------
MESSAGE The class of an active subunit may not be changed.
CAUSE This is a substitute message for error number 68. A program
line that is a procedure header line, (SUB), has been replaced
during editing with a program line that is a function header,
(DEF), or vice versa.
ACTION Procedure and function header lines cannot replace each other.
If you want to change a procedure to a function or vice versa,
enter the new header line at the end of the current program and
use the COPY command to copy the body. Next, do a DEL SUB of
the original header and body.
-----------------------------------------------------------------------------
MESSAGE The generic type (string/number) of an active function may not
change.
CAUSE This is a substitute message for error number 68. The type of
value returned by a function was changed when the program was
paused or halted while in the function. A numeric type was
changed to a string type or vice versa.
ACTION Allow the program execution to terminate and then make the
required changed.
-----------------------------------------------------------------------------
MESSAGE Number after ' in string is not between 0 and 255.
CAUSE The singe quote (') in a string literal is used to denote a
character by its ASCII equivalent number. For 8-bit
characters, these numbers can range from 0 to 255. A single
quote was encountered followed by a number greater than 255.
ACTION Determine the correct number for the desired character.