Re: [IronPython] Application stays in memory even after exit

2008-09-02 Thread cephire
Dan/Michael, Thank you for your reply. I had a timer running and I didn't stop it. Once I did, the application exited properly. thank you, Joseph On Sep 2, 9:44 pm, Michael Foord <[EMAIL PROTECTED]> wrote: > cephire wrote: > > Hi: > > If you mean am I closing all the forms, yes. Here is the code

Re: [IronPython] Application stays in memory even after exit

2008-09-02 Thread Michael Foord
cephire wrote: Hi: If you mean am I closing all the forms, yes. Here is the code snippet of both program.py and the form's exit menu item. Please note that I also tried self.Close and still it didn't exit from the memory. Thank you for your time. I asked if you had *deleted references* to yo

Re: [IronPython] Application stays in memory even after exit

2008-09-02 Thread Dan Eloff
Do you use threads? Any running non-daemon python thread will prevent the application from exiting. Threads in python are non-daemon by default. I don't know what the rules are for .NET threads. -Dan On Tue, Sep 2, 2008 at 10:49 AM, cephire <[EMAIL PROTECTED]> wrote: > Hi: > If you mean am I clos

Re: [IronPython] Application stays in memory even after exit

2008-09-02 Thread cephire
Hi: If you mean am I closing all the forms, yes. Here is the code snippet of both program.py and the form's exit menu item. Please note that I also tried self.Close and still it didn't exit from the memory. Thank you for your time. Program.py = class mysecs10: # namespace @staticme

Re: [IronPython] Application stays in memory even after exit

2008-09-01 Thread Michael Foord
cephire wrote: Hi all, I've found out that the application is still in memory even after closing the application. I exit the application with Application.Exit(). What should I do to remove the application completely? Which version of IronPython are you using? Have you deleted all reference

[IronPython] Application stays in memory even after exit

2008-09-01 Thread cephire
Hi all, I've found out that the application is still in memory even after closing the application. I exit the application with Application.Exit(). What should I do to remove the application completely? Thank you, Joseph ___ Users mailing list Users@list