1070: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
m (1 revision)
 
No edit summary
Line 1: Line 1:
{{Error
{{Error
|1070
|1070
|Invalid Variable name
|Invalid [[Variable]] name
|#Undefined [[variable]] name. A variable name was specified that was either invalid or not defined. One situation where this error can occur is when a FORM variable is not defined. In the following example, the variable P is used to identify the POS position. If P is not previously defined, this error will occur during execution: PRINT USING "FORM POS P, N 12.2": D
|#Undefined variable name. A variable name was specified that was either invalid or not defined. One situation where this error can occur is when a FORM variable is not defined. In the following example, the variable P is used to identify the POS position. If P is not previously defined, this error will occur during execution: PRINT USING "FORM POS P, N 12.2": D
#[[Break]] used in conjunction with an otherwise unused variable or [[internal function]] (like [[fkey]])
#[[Break]] used in conjunction with an otherwise unused variable or [[internal function]] (like [[fkey]])
|#Change the variable to a literal or define the variable.
|#Change the variable to a literal or define the variable.

Revision as of 16:43, 10 June 2014

Summary:

Invalid Variable name

Cause:

  1. Undefined variable name. A variable name was specified that was either invalid or not defined. One situation where this error can occur is when a FORM variable is not defined. In the following example, the variable P is used to identify the POS position. If P is not previously defined, this error will occur during execution: PRINT USING "FORM POS P, N 12.2": D
  2. Break used in conjunction with an otherwise unused variable or internal function (like fkey)

Remedy:

  1. Change the variable to a literal or define the variable.
  2. Check the spelling of the variable.