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.