0123: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
m (1 revision)
 
No edit summary
 
Line 3: Line 3:
|[[Dimension]] conflict
|[[Dimension]] conflict
|The number of provided [[array]] dimensions does not match the number specified in the [[Dim]] [[statement]].
|The number of provided [[array]] dimensions does not match the number specified in the [[Dim]] [[statement]].
|Change the DIM statement or match the required number of dimensions. Also check that the program is not trying to index an array larger than three dimensions (the [[AIDX]] and [[DIDX]] functions support one-, two- or three-dimensional arrays).
|Change the DIM statement or match the required number of dimensions.  
}}
}}
[[Category:Error Codes]]
[[Category:Error Codes]]

Latest revision as of 01:09, 23 May 2017

Summary:

Dimension conflict

Cause:

The number of provided array dimensions does not match the number specified in the Dim statement.

Remedy:

Change the DIM statement or match the required number of dimensions.