Hi,
How do I find which item of the the treeview is selected???
Thanx.
Printable View
Hi,
How do I find which item of the the treeview is selected???
Thanx.
Hi,
You can use: -
for x = 0 to Treeview1.nodes.count - 1
if treeview1.nodes(x).selected = true then
end if
next x
or you can use the "NodeClick" method and set a global variable?
Just a couple of thoughts...
DJ
TreeView1.SelectedItem works quicker.