Instance member does not exist

You referred to a nonexistent member of a class. For example:

Class MyClass
'...
End Class
Dim varV As Variant
Set varV = New MyClass
Print varV.Something		' Illegal because Something is not defined
						' as a member of MyClass.

Define the member within the class, or remove the reference.