|
-
September 5th, 2001, 05:18 PM
#1
tree view
ANyone tell me a quick way of iterating through all nodes of a tree view looking for a key.
Many thanx.
mat
-
September 6th, 2001, 01:44 AM
#2
Re: tree view
If you can use the index to just get the node, or loop through it using for each
Dim N as Node
set N = Treeview1.Nodes("Somekey")
for Each N In Treeview1.Nodes
Debug.print N.Key
next N
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
-
September 6th, 2001, 03:36 PM
#3
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
|