Anyone know why this doesn't work....
I thought this might solve the above problem, but apparently not.
I can't believe there is no way to add complete nodes to a tree....it seems like an obvious thing to want to do
Code:
Private Sub Form_Load()
Dim tvw As Object
Dim nde As Node
Dim nde2 As Node
Set tvw = CreateObject("MSComctlLib.TreeCtrl")
With tvw
Set nde = .Nodes.Add(, , "ROOT", "Root Node")
Set nde = .Nodes.Add("ROOT", tvwChild, "CHILD1", "Child One")
Set nde = .Nodes.Add("ROOT", tvwChild, "CHILD2", "Child Two")
End With
Set nde = tvw.Nodes("ROOT")
Set nde2 = TreeView1.Nodes.Add(, , "R", "Tv1 Root")
Set nde.Parent = TreeView1.Nodes("R")
End Sub
Hehehehe....just to get this back to the top of the forum ;o)
Once more unto the top dear friends, once more...
Can I copy a node from one treeview to another or not?
I wondering if I should've titled this thread 'Horny Chicks' or something....
Where are the gurus and hyperactive members when you need them?
;)