Problems with Treeview.Nodes.Clear()

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I have got a problem with Treeview.Nodes.Clear() under VB2005.

When I have some nodes in my treeview and a force to clear() all nodes then
it seems to work, because the nodes are not visible. But when I add new nodes
and I want to look for a specific item then I only get the Items from the
beginning --> something is not working with the clear() method.

Please help me!?! juvi
 
You perhaps kept a reference to an old node ?

I'm using the clear method and didn't noticed anything for now...
 
How can I delete such references?

Patrice said:
You perhaps kept a reference to an old node ?

I'm using the clear method and didn't noticed anything for now...
 
More precisely my thought would be that you might have kept in a variable a
reference to the root node or something similar. If you delete then the
treeview nodes and use this reference (perhaps adding it back to the
treeview) you could likely have this behavior.

Just double check that you don't use a variable that holds a reference to
past nodes. Just make sure tthat you don't add to the new list nodes that
were kept from the previous nodes...

For exemple (not tested) :

Dim Node as TreeNode
Node=New TreeNode("A")
Node.Nodes.Add("B")
TreeView1.Nodes.Add(Node)
TreeView1.Nodes.Clear
Node=New TreeNode("Other") ' If commented you should likely still see nodes
A and B child as you add backk an old node...
TreeView1.Nodes.Add(Node)

Good luck.
 
Back
Top