Thank you - that did the trick.
Is there a setting in the debugger that will let me see which line in class module is causing the error? That would help me figure out problems like this in the future.
I am trying to build a tree class. Here is the relevant code from the class CNode:
Private pChildA As CNode
Private pParentA As CNode
Public Property Get childA() As CNode
child = pChildA
End Property
Public Property Set childA(inChild As CNode)
Set pChildA = inChild
End Property...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.