It means that the type of the value you are trying to assign to a variable is not compatible with the type of the variable. That can happen if you try to assign for example a string to an integer like in the following example:


dim i as integer

i="hello"




Check the types of variables in any assignments in your program.

Nick A.