blah blah blah is here! blah blah » Close

1
votes
6 answers

Search ALL Attributes in XML file

q12
349

Search ALL Attributes in XML file. For the moment I make this useful Search for ALL the Nodes in a XML file. I wonder if something similar can be done for Attributes? Here is my findings: [code] string retName; XmlNodeList list = nul ...

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

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