You Have Used an Operator that is not Compatible with the Data Types Specified Error

You tried to perform an operation on data types that don't support the operation. For example, multiplying strings, dividing Booleans, etc.


Examples

Dim c as Integer
Dim d,e as String
Dim g,h as Boolean
d="Ted"
e="Alice"
c=d*e //error
c=g/h //error