[python-win32] PyCEdit issue

2008-08-14 Thread Marc-André Belzile
Hi, does anyone know why all the cr/lf characters are ignored by PyCEdit when used in a dialog ? There is no such problem with a static control though but I want to be able to select/copy text from the control. Here's my code snipet... folder = os.path.dirname(__file__) f = open(folder + '/

[python-win32] help with parsing email

2008-08-14 Thread Ahmed, Shakir
Hi all, I do appreciate if any one can help me for my following problem: 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. Any help with the python script is highly appreciat

Re: [python-win32] help with parsing email

2008-08-14 Thread Tim Golden
Ahmed, Shakir wrote: 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 ; 11-Aug-2008 http://my.xyz.com//content/ifs/apps/myDocFo

Re: [python-win32] help with parsing email

2008-08-14 Thread James Matthews
It seems very simple split it and then rfind to the first slash and slice the rest. On Thu, Aug 14, 2008 at 9:19 AM, Tim Golden <[EMAIL PROTECTED]> wrote: > Ahmed, Shakir wrote: > >> I need to grab/parse numeric numbers such as app number from incoming >> emails stored in Microsoft Outlook (Micro