109
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
the program tries to access this property in a different way.
Example:
sys.runmode = PL_SYS_MODE_DEBUG
' error C1021: write access to property
is denied
See Also
C1022
Description:
There are several system calls which the compiler uses directly, and are invoked
implicitly in code (string comparison, string copy, conversion from string to
number, etc). This error occurs when a platform does not export these functions,
but source code requires them.
Example:
doevents
' error C1022: platform does not export 'doevents' syscall
See Also
C1023
Description:
The global scope may contain only declarations/definitions of procedures,
variables, enumeration types and constants. This error occurs when some other
statement is encountered at the global scope.
Example:
for
i =
1
to
10
' error C1023: Unexpected at global scope
next
i
See Also
Understanding the Scope of Variables
77
45
57