|
-
Nov 25th, 2001, 10:58 AM
#1
Thread Starter
New Member
TreeView Help
Hi All,
I really need some help here. See, I have got a very cool Tree View going and I'm using Check Box's. But, there's one more thing I need to do to it to make it complete! And that is, so that when you click the "Apply" button, that it goes through every node one by one and to see if the check box is ticked or unticked, and, if it is ticked, to write the key (Text) that it has on it to a text file.
Please please Please! Can anybody help me out here? I think I'm on the right track using Node.Root.Children to form a loop, but, there could be a problem there as there is only more information added on the Expand Event.
Any suggestions and opinions is most welcome and appreciated!
Jester.
To Deny Our Own Impulse's, Is to Deny the Very Thing That Makes Us Human.
-
Nov 25th, 2001, 11:02 AM
#2
PowerPoster
something like
VB Code:
dim i as long
for i =1 to treeview1.nodes.count
debug.print treeview1.nodes(i).text
next i
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
|