> 'Request Deallocation' built-in
>
> Is this something new in LV7?
>
Yep. It replaces the Deallocate memory as soon as possible
Tools>>Options setting which always caused problems because it was too
global in scope. This node will schedule for subVI memory to be
released when the subVI this node is in completes. This means that if
it does something memory intensive, and you decide you don't want those
temporary buffers to be held onto to use as a cache for the next call,
you can place this node somewhere in code that executes on your diagram.
If you make multiple calls and you know when this is the last call,
you can optionally execute it just on the last call.
I don't think this will help with the ActiveX problem. The prob
lem
sound to me like you are expecting clearing the tree to know what was
stored in it, and to contact the GOOP manager and deallocate the
reference values. The tree doesn't know enough to do that. You will
need to deallocate the references yourself, then clear the tree.
As for using a different tree control, LV7 also has a LV native one.
Greg McKaskle