>Error messages
Error messages are displayed in the console window.
- 1
Syntax does not make sense.
- 2
Type mismatch.
- 3
Select Case does not support that type of expression.
- 4
The compiler is not implemented.
- 5
The parser's internal stack has overflowed.
- 6
Too many parameters for this function.
- 7
Not enough parameters for this function call.
- 8
Wrong number of parameters for this function call.
- 9
Parameters are incompatible with this function.
- 10
Assignment of incompatible data type.
- 11
Undefined identifier.
- 12
Undefined operator.
- 13
Logic operations require Boolean operands.
- 14
Array bounds must be integers.
- 15
Can't call a non-function.
- 16
Can't get an element from something that isn't an array.
- 17
Not enough subscripts for this array's dimension.
- 18
Too many subscripts for this array's dimension.
- 19
Can't assign an entire array.
- 20
Can't use an entire array in an expression.
- 21
Can't pass an expression as ByRef parameter.
- 22
Duplicate identifier.
- 23
The backend code generator failed.
- 24
Ambiguous call to overloaded method.
- 25
Multiple inheritance is not allowed.
- 26
Cannot create an instance of an interface.
- 27
Cannot imkplement a class as though it were an interface.
- 28
Cannot inherit from something that is not a class.
- 29
This class does not fully implement the specified interface.
- 30
Event handlers cannot live outside of a a class.
- 31
It is not legal to ignore the result of a function call.
- 32
Can't use the Self keyword outside of a class.
- 33
Can't use the Me keyword outside of a class.
- 34
Can't return a value from a Sub.
- 35
An exception object required here.
- 36, 37, 38, 39
Obsolete.
- 40
Destructors can't have parameters.
- 41
Can't use the Super keyword outside of a class.
- 42
Can't use the Super keyword in a class that has no parent.
www.belle-nuit.com -
15.6.4