|
-
May 6th, 2020, 12:00 AM
#11
Re: Missing NEXT property using the TvwNode
 Originally Posted by Mith
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:
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'..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|