106
Language Reference
©2000-2008 Tibbo Technology Inc.
C1013
Description:
This error occurs when a statement references an identifier which has not
previously been defined.
Example:
dim
x
as
integer
x =
15
* y
' error C1013: undeclared identifier 'y'
See Also
C1014
Description:
Identifiers can refer to entities of different types: labels, variables, procedures,
enumeration types, constants. This error occurs when you cannot use identifier of
a certain type in the current statement.
Example:
dim
x
as
integer
goto
x
' error C1014: 'x' is not a label
See Also
C1015
Description:
The next clause of a for/next statement must use the same index variable as
the for clause.
Example:
dim
i,j
as
integer
for
i =
1
to
10
next
j
' error C1015: 'For'/'Next' arguments mismatch
81
132