On Tue, May 13, 2008 at 1:26 PM, Eurico Chagas Filho < [EMAIL PROTECTED]> wrote:
> Hi > > If I have a textbox waiting for a value to enter, some code in the VALID. > Then the F3 key is pressed, there the container holding the textbox is > destroyed. > But it still executes the code in the VALID, what should I do ? > > TIA, E. Right off of the top of my head, trying to release the parent container would seem to be a no-no. The parent container's Destroy method might run, but clearly there's a reference to a contained object (the calling textbox) that can't be destroyed. Since the object can't be destroyed, there's no reason for the VALID not to run. Bill Anderson --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html --- _______________________________________________ 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 Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED] ** 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.

