108
Language Reference
©2000-2008 Tibbo Technology Inc.
sub
sub1
…
end
sub
…
x = sub1
' error C1018: subroutine cannot be on the right of '='
C1019
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
Introduction to Variables, Constants and Scopes
C1020
Description:
This error occurs when trying to define an array with more than 8 dimensions (a
maximum of 8 dimensions are allowed).
Example:
dim
i(
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
,
2
)
as
integer
' error C1020: Too many array
dimensions (8 max)
See Also
C1021
Description:
This error occurs when a property was defined for read-only or for write-only, but
43
50
50