Im converting old TreeView source code to the new VBCCR TreeView but i struggle with the missing NEXT property of the tree node:
Normally the NEXT property is used to loop through the node childs:
Any ideas?Code:Set xNode = Node.Child For I = 1 To Node.Children xNode.Checked = True Set xNode = xNode.Next Next I
SOLTUION:
ok, i got it, the equivalent for the NEXT property is NextSibling...is there any reason to use another name for this property?




Reply With Quote