Visual Basic: Highlight or select a tree node using code
Platform:
Visual Basic
Task:
Highlight or select a tree node using code
Discussion:
To select a tree node programmatically try this:
Example:
'selects the fifth node and highlights it treeNav.SelectedNode = treeNav.Nodes(4)
Back to Index