Hey,
I am using C# ( windows application ).
I have a TreeView Control with set of nodes and child nodes. For example:
ROOT has A,B,C ......
A has a1, a2, a3 .... and then that a1, a2 also contains some nodes like x1, x2, x3 and so on. Like this many subnodes are there ... (I know It is possible using for loops with for loop..)
I just wanna access all the nodes in treeview control using one or two for loops..Is there any algorithm for that or is there any other way.
One more question:
Is it is possible to have path of tree node in a object or in a string using any library functions, for example
string S = TreeView1.Nodes[i].Nodes[j].nodes
