PDA

Click to See Complete Forum and Search --> : Selecting a node at runtime - Treeview


omarswan
Dec 16th, 1999, 02:07 PM
When using the treeview control at runtime, How do you select a specific node at runtime.

------------------
OmarSwan
Student
omarswan@yahoo.com

"Jesus Lives"

Inhumanoid
Dec 16th, 1999, 02:27 PM
Dim nodeX as Node
set nodeX = 'the node you want selected

'to select it
nodeX.selected = true



or



TreeView1.Nodes(<index> ).selected = true



Hop this helps