this is crazy and i can't figure it out. i've implemented a collection in my main class and populated it. there are 4 collections (collectionobject.count verified it), each with a couple of dozen items. i'm trying to get to the items in another class. i passed in the collection index number and am using this to get the item(s):
also tried
i also instantiated the collection object (coljob) at the top of the class with this:
but i get this error at that line: Run-time error '91': object variable or with block variable not set
so, what have i missed?
Code:
coljob.item(ColJobNum).KernPairNegLC
also tried
Code:
coljob(ColJobNum).KernPairNegLC
i also instantiated the collection object (coljob) at the top of the class with this:
Code:
Public coljob As colArtJob
but i get this error at that line: Run-time error '91': object variable or with block variable not set
so, what have i missed?
