Can you Extend a TreeNode to contain a reference to an object/class...?
such as:
then implement it in the TreeView (or a modified treeview)
Have Fun, Be Young... Code BASIC
-Josh
PROGRAMMER:
Red-eyed, mumbling mammal capable of conversing with inanimate objects.
such as:
Code:
Public Class MQLTreeNode
Inherits TreeNode
Private pMX As mqlObj
Public Property MX() As mqlObj
Get
Return pMX
End Get
Set(ByVal value As mqlObj)
pMX = value
End Set
End Property
End Class
then implement it in the TreeView (or a modified treeview)
Have Fun, Be Young... Code BASIC
-Josh

PROGRAMMER: