Class not specified on BIND into: <name>

You tried to assign a reference to a product object to a variable of type Variant with the Set...Bind statement and you omitted the class name of the object. For example, assuming a product class named ProdADT:

Dim P As New ProdADT("MyProdADT")
Dim varV As Variant
Set varV = Bind("MyProdADT")             ' Illegal because product class name
                                         ' is missing
Set varV = Bind ProdADT("MyProdADT")     ' Legal syntax

Insert the name of the product class after the Bind keyword.