Finding TreeNodes using Modeless dialog
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi everyone! I have questions ... How can i search treeNodes in an treeView using treeNode.Name property? How can i highlight resultant nodes? Please need some idea. Thanks.
-
Hi everyone! I have questions ... How can i search treeNodes in an treeView using treeNode.Name property? How can i highlight resultant nodes? Please need some idea. Thanks.
h@s@n wrote:
How can i search treeNodes in an treeView using treeNode.Name property?
You'd have to go through all nodes recursively.
h@s@n wrote:
How can i highlight resultant nodes?
Call TreeNode.Select(), or TreeNode.Selected = true
Regards:rose: