Send python-win32 mailing list submissions to
python-win32@python.org
To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/python-win32
or, via email, send a message with subject or body 'help' to
python-win32-requ...@python.org
Send python-win32 mailing list submissions to
python-win32@python.org
To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/python-win32
or, via email, send a message with subject or body 'help' to
python-win32-requ...@python.org
On 3/06/2011 4:30 PM, Jacob Kruger wrote:
What I'm doing is trying to open a text file, but if it's not there, then I
tell the code to exit(), and while it works when running the source code using
the python executable, after I have run the code through py2exe, and then try
testing it, I get t
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
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
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