|
-
Jul 13th, 2005, 04:13 PM
#1
Thread Starter
New Member
How do I update TreeView lists?
I have a situation that I have two treeviews that start with:
TreeView1.Nodes.Add("Plan")
TreeView1.Nodes(0).Nodes.Add("SDP")
TreeView1.Nodes(0).Nodes.Add("BIP")
and:
TreeView2.Nodes.Add("Plan")
Treeview2.Nodes(0).Nodes.Add("SDP").
When the program runs, it needs to remove from TreeView1 all items common to both treeviews and keep in TreeView2 all items common to both.
In other words, after the program runs, the TreeView1 should show:
Plan
.BIP
and TreeView2 should show:
Plan
.SDP
I need help in writing the code for this operation!
Thanks!
Mike Fowler
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
|