|
C1019: Not array |
Top Previous Next |
Description:
This error occurs when attempting to access a variable which is not an array as if it were an array (by using an index number).
Example:
dim i,j as integer i = j(3) ' error C1019: j is not array
|
See Also