blah blah blah is here! blah blah » Close

0
votes
2 answers

my treeview little problem

q12
349

I have 2 treeview. 1-treeView1(which is visible on form (contain FileNames)) and 2-TreeView tv = new TreeView();(which is invisible(contain FileFullNames(entire path))) inside a [foreach (TreeNode tn in treeNode.Nodes)] <-treeNode ...

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 == ...

0
votes
1 answers

LABEL.TEXT property to change when a node is selected

Hey guys. I have a treeview control and a label right next to it. I want the label to show a certain text (hence the label.text property should be involved in this process) whenever a different node from the treeview control is sele ...

0
votes
0 answers

Controling TreeView Control

sanjib
226

I have two questions all regarding TreeView Control. 1> We usually know that TreeView can be bound to XML, tabular or relational data but is it more useful with the XML file? In fact when I try to bind it with data, it directs to ei ...

1
votes
1 answers

Visual C# Treeview finding a node and adding on to it

Mort
15

I am trying to search for a name of a specific node in a TreeView and add a node under that one, but I'm not sure how. Here's what I came up with: [code]TreeNode[] addonNode = myTreeView.Nodes.Find("abc", true);[/code] Afte ...

Feedback