|
This error occurs when using a VARIANT type, for which no value has been defined. To resolve this error, make sure that the used VARIANT variable has a (default) value.
An example that will trigger this error:
VARIANT myvariable;
// Error: the VARIANT variable has no default value
PRINT(myvariable); | << Back to errors overview
|