|
-
Feb 5th, 2003, 08:52 AM
#1
Thread Starter
Addicted Member
Selected item of treeview???
Hi,
How do I find which item of the the treeview is selected???
Thanx.
-
Feb 6th, 2003, 12:50 PM
#2
Addicted Member
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
-
Feb 6th, 2003, 12:52 PM
#3
Frenzied Member
TreeView1.SelectedItem works quicker.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|