Re: [python-win32] help with parsing email

2008-08-18 Thread Gabriel Genellina
En Thu, 14 Aug 2008 12:50:57 -0300, Ahmed, Shakir [EMAIL PROTECTED] escribió: I need to grab/parse numeric numbers such as app number from incoming emails stored in Microsoft Outlook (Microsoft Exchange server) with specified subject line. The email body is like this myregion ; tst ;

Re: [python-win32] PyCEdit issue

2008-08-18 Thread Marc-André Belzile
Ok that works. Is it a limitation with the windows control or PyCEdit? Thanks -mab -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roger Upole Sent: Saturday, August 16, 2008 11:32 AM To: python-win32@python.org Subject: [python-win32] Re: PyCEdit

Re: [python-win32] help with parsing email

2008-08-18 Thread Ahmed, Shakir
Thanks everyone who tried to help me to parse incoming email from an exchange server: Now, I am getting following error; I am not sure where I am doing wrong. I appreciate any help how to resolve this error and extract emails from an exchange server. First I tried: mailserver =

Re: [python-win32] help with parsing email

2008-08-18 Thread Ahmed, Shakir
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Werner F. Bruhin Sent: Monday, August 18, 2008 1:04 PM To: [EMAIL PROTECTED] Cc: python-win32@python.org Subject: Re: help with parsing email Ahmed, Shakir wrote: Thanks everyone who tried to help me to

Re: [python-win32] Play MP3s from Windows, Just Works

2008-08-18 Thread Tim Roberts
Vernon Cole wrote: As always, remember that mp3 is proprietary, and the owner has shown willingness to be nasty about licensing it. Therefore, anything that is easy to install is possibly illegal and/or will open you to a lawsuit. If you are doing new work, better to use ogg. That statement

Re: [python-win32] GetModuleFileName requires Process or Thread handle?

2008-08-18 Thread Tim Roberts
Walter Decker wrote: Hello, Can someone help me diagnose why the following fails to retrieve the 'exe' name KillByName? ... for pid in processList: try: print KillByName pid: + str(pid) handle = win32api.OpenProcess(win32con.PROCESS_ALL_ACCESS, False, pid) print

Re: [python-win32] help with parsing email

2008-08-18 Thread Tim Roberts
Ahmed, Shakir wrote: Thanks everyone who tried to help me to parse incoming email from an exchange server: Now, I am getting following error; I am not sure where I am doing wrong. I appreciate any help how to resolve this error and extract emails from an exchange server. First I tried:

Re: [python-win32] PyCEdit issue

2008-08-18 Thread Tim Roberts
Marc-André Belzile wrote: Ok that works. Is it a limitation with the windows control or PyCEdit? The Windows multi-line edit control requires \r\n between lines. If that's what PyCEdit uses, then that's where it comes from. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc.

Re: [python-win32] help with parsing email

2008-08-18 Thread Gabriel Genellina
En Mon, 18 Aug 2008 12:24:07 -0300, Ahmed, Shakir [EMAIL PROTECTED] escribió: Thanks everyone who tried to help me to parse incoming email from an exchange server: Now, I am getting following error; I am not sure where I am doing wrong. I appreciate any help how to resolve this error and

Re: [python-win32] help with parsing email

2008-08-18 Thread Gabriel Genellina
En Mon, 18 Aug 2008 12:24:07 -0300, Ahmed, Shakir [EMAIL PROTECTED] escribió: Thanks everyone who tried to help me to parse incoming email from an exchange server: Now, I am getting following error; I am not sure where I am doing wrong. I appreciate any help how to resolve this error and