When using the treeview control at runtime, How do you select a specific node at runtime.
------------------
OmarSwan
Student
[email protected]
"Jesus Lives"
Printable View
When using the treeview control at runtime, How do you select a specific node at runtime.
------------------
OmarSwan
Student
[email protected]
"Jesus Lives"
orCode:
Dim nodeX as Node
set nodeX = 'the node you want selected
'to select it
nodeX.selected = true
Hop this helpsCode:
TreeView1.Nodes(<index> ).selected = true