TreeView Help

  • Thread starter Thread starter Jase
  • Start date Start date
J

Jase

Hi,

Simple question, how do you set up a treeview so that when 1 on the
nodes is selected it sends text associated with that node to a text
box?

Thanks for any help

Jase
 
something like this:


nodetxt = e.Node.Text
If Not e.Node.Parent Is Nothing Then
rootnde = e.Node.Parent '(root node)
roottxt = rootnde.Text '(root node text)
End If

rg,
Eric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top