PE
PeteB
March 13, 2003 04:38 PM UTC
UPDATE: I think I have resolved this...it seems to be a TreeView bug.
You have to clear all nodes from the treeview before closing the form or they do not get cleared even once the form is gone...I assume this should be handled by the control therefore a bug.
Code is:
treeView1.Nodes.Clear()
I do call GC.Collect() after as an added precaution.
PE
PeteB
April 8, 2003 12:06 PM UTC
FYI: This does appear to have been the issue. Clear all nodes before exiting Form with Treeview.