blah blah blah is here! blah blah » Close

0
votes
1 answers

Programmaticaly selecting treenode

Hi I have 2 treeview controls and i am trying to select the corresponding node in treview 2 when selecting a node in treeview 1? I have tried the following: [code] foreach (TreeNode tn in this.tvNewConfig.Nodes) { if (tn == ...

1
votes
3 answers

deleting a particular node from a nested tree structure

Hi all, i have a tree structure like this. [code]RootNode .ChildNode1 ..GrandChild1 ..GrandChild2 .ChildNode2 ..GrandChild3 ..GrandChild4 ..GrandChild5[/code] ChildNodes and GrandChildNodes are dynamically cr ...

Feedback