I have a class module called Holding. In it are several public variables. My code is this:
Dim holdings as Collection Dim h as Holding Set holdings = new Co
Remove the parentheses.
holdings.Add h
Otherwise you are trying to add to the collection the value of the default property of your Holding instance, and it doesn't have a default property.
Holding