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 fo

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

2008-09-02 Thread cephire
ns(None) def _exitToolStripMenuItem_Click(self, sender, e): Application.Exit() On Sep 2, 1:36 am, Michael Foord <[EMAIL PROTECTED]> wrote: > cephire wrote: > > Hi all, > > I've found out that the application is still in memory even after > >

[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

Re: [IronPython] A new application in ipy

2008-09-01 Thread cephire
continue to use (and probably get some feedback from others too), I will continue to enhance the application. Thank you for your interest Joseph On Sep 1, 4:09 am, "Dan Eloff" <[EMAIL PROTECTED]> wrote: > I made something along these lines a long time ago with C# and access > (yu

[IronPython] A new application in ipy

2008-08-31 Thread cephire
All: I got my first IronPython application working. This is a simple application I wrote to help myself track time that I spend in various application. If you're interested download the package from: http://mysecs.googlecode.com/files/mySecs_0.1.zip Extract the files to a directory and execute mys

Re: [IronPython] Building stand alone executable

2008-08-27 Thread cephire
Thank you. I built as console and I get an error no module named logging. I am using IPCE-r7. i'm importing logging using import logging. and as i said before it works fine when i invoke using ipy mainform.py. Joseph On Aug 27, 6:18 pm, Michael Foord <[EMAIL PROTECTED]> wrote: >

[IronPython] Building stand alone executable

2008-08-27 Thread cephire
Hi: The program that I've written works well when using the ipy command. I tried to compile it as a standalond executable using pyc.py. It produces an executable without any error. When I try to execute the executable, nothing happens; There is no error message; nothing. How can I debug? How can I

[IronPython] Process.GetProcessById error

2008-08-21 Thread cephire
Hi, Using ironpython I'm trying to get the active window details. Refering to voidspace (http://www.voidspace.org.uk/ironpython/winforms/ part10.shtml), I've created a user32 dll. I'm using the below code. if User32.GetWindowText(hd, txt, WndTitleChars): pid = clr.Reference