Re: [python-win32] pywin32 py2exe

2011-06-06 Thread Jerry Hill
On Fri, Jun 3, 2011 at 6:55 AM, Umesh Sharma wrote: > i = input    #waiting till event captured This doesn't wait for anything. It assigns the function input to the local name i. You probably want "i = input()" instead, which will force the dos window to stay open until the user hits enter. Pl

Re: [python-win32] pywin32 py2exe

2011-06-06 Thread Umesh Sharma
crashes means it just after double clicking on exe file it opens prompt window and after some mili second it closes. And about that part i have used pump message but first i want that exe of this file should run properly. ___ python-win32 mailing list pyt

Re: [python-win32] pywin32 py2exe

2011-06-06 Thread Mark Hammond
On 3/06/2011 8:55 PM, Umesh Sharma wrote: hi, i am working on outlook automation , in my code i am using dispatchwithevents method for capturing events of outlook as newmail ,itemsend .The code works fine in command line but after converting it into exe file using py2exe ,the generated exe file c