Andy Davies wrote:
> Who's used this? - can I safely assume that it will remove all contained
> objects, object refs etc. or do I risk dangling things and memory loss (at
> my age I have to worry about these things <bg>)?
>
>
>   
My experiences are similar to Dave's, with a mention that one time in 
VFP7 a couple years ago I had to put in a loop something like this to 
handle a delayed removal or some other issue:

llRemoved = NOT vartype(this.oObject) = "O"
do while NOT llRemoved
    this.removeobject("oObject")
    llRemoved = NOT vartype(this.oObject) = "O"
enddo


...but as I said...that was in VFP7, so perhaps a non-issue today? 

--Michael

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to