Quote Originally Posted by Mith View Post
Im converting old TreeView source code to the new VBCCR TreeView but i struggle with the missing NEXT property of the tree node:

Name:  Screenshot - 06.05.2020 , 08_13_09.png
Views: 1228
Size:  6.8 KB

Normally the NEXT property is used to loop through the node childs:

Code:
Set xNode = Node.Child

For I = 1 To Node.Children

   xNode.Checked = True
   Set xNode = xNode.Next

Next I
Any ideas?

SOLTUION:

ok, i got it, the equivalent for the NEXT property is NextSibling...is there any reason to use another name for this property?
'Next' is a reserved keyword. So I can't use it.
So I used 'NextSibling'..