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