TreeView
-
Hi I want to find all children at a specific level in a treeview with a specific name. for example I want to find all children with full address :"site/people/person/name" Using visual studio 2005 how should I do this? Thanks in advance
-
Hi I want to find all children at a specific level in a treeview with a specific name. for example I want to find all children with full address :"site/people/person/name" Using visual studio 2005 how should I do this? Thanks in advance
The treeview's nodes collection contains a function that can return a node with a given key. Each node has its own node collection for its child nodes. Using these, it's fairly straightforward to write a function that recurses this structure.
Help me! I'm turning into a grapefruit! Buzzwords!
-
Hi I want to find all children at a specific level in a treeview with a specific name. for example I want to find all children with full address :"site/people/person/name" Using visual studio 2005 how should I do this? Thanks in advance