Summary:
|
Illegal character expression
|
Cause:
|
- Use of an illegal character expression.
- May be caused by an attempt to pass a single element of an array in a Chain statement, such as in the illegal statement: CHAIN "program name",C$(1).
- X$=X
- Initial Array size is too large. (See System Limits)
- ",wait" must follow ",attr=" in rinput select statements.
- setenv$ specified
|
Remedy:
|
- Check string expressions for syntax errors or errors in logic.
- If attempting to pass an array element, you must pass the entire array with the MAT keyword instead: CHAIN "program name",MAT C$
- X$=Str$(X)
- Dim the array to something smaller than 10000 then Mat it larger.
- reverse the order of the parameters.
- correct spelling to setenv
|