Saturday 15 August 2015

vb6 - can I modify the treeview node key in vb6? -


How do I change the tree view control node key in vb6?

Do I want to change it to the second value of the run time?

This is what I am trying to do:

  treeview.nodes.key = "ABC"    

Yes, you can change one or more node keys. You can use the node index, or the key to change what you are missing, by doing two ways:

  1. Using the main index of the node: TreeView1.Nodes (1) .k = "changed 2"
  2. using the node key: TreeView1.Nodes ("MainKey"). Key = "changed"

    Hope it helps!

No comments:

Post a Comment