Re: [python-win32] Request for comments

2008-05-23 Thread Graeme Glass
On Thu, May 22, 2008 at 6:21 PM, Tim Golden [EMAIL PROTECTED] wrote: I have a request of the python-win32 community. Have a look at: http://timgolden.me.uk/python-on-windows/ In particular, click through to the section on the Registry (which is the only section which has anything useful in

Re: [python-win32] MSProject and export maps

2008-05-23 Thread Tim Golden
Roger Upole wrote: Ron Henderson wrote: My guess is that it *is* a Python problem somewhere in the win32com bindings, based on the fact that executing a macro seems to do the right thing but going directly through the com API from Python does not. The macro executes essentially the same

Re: [python-win32] Request for comments

2008-05-23 Thread Michel Claveau
Hi! For IPC.Mailslot, if you need, you can look my little example-code (below). Tested for compatibility with Vista.waitfor.exe ; and tested XP = Vista via LAN (sorry for my bad english) @-salutations -- Michel Claveau # -*- coding: cp1252 -*- def mailslotserver(duree=99,

[python-win32] Py2exe and win32com.shell

2008-05-23 Thread Tejovathi P
Hi all... I created an exe for my application. While generating the exe, py2exe reports that win32com.shell module is not found and continues generating exe. When I try to run the exe, I get an import error that No module named shell... I opened pythonwin and tried importing wincom.shell.

[python-win32] [Fwd: Re: MSProject and export maps]

2008-05-23 Thread Tim Golden
[Sorry, copying back to list] Original Message Subject: Re: [python-win32] MSProject and export maps Date: Fri, 23 May 2008 14:14:24 +0100 From: Tim Golden [EMAIL PROTECTED] To: Ron Henderson [EMAIL PROTECTED] References: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: [python-win32] MSProject and export maps

2008-05-23 Thread Ron Henderson
Can you confirm that the output is really a CVS (text) file? When I tried this the file that was written was still a binary .mpp file, i.e., the FormatID was ignored. This works for me (I basically recorded a Macro and reproduced it): code import win32com.client project =

Re: [python-win32] Request for comments

2008-05-23 Thread Kevin Horn
On Thu, May 22, 2008 at 11:21 AM, Tim Golden [EMAIL PROTECTED] wrote: I have a request of the python-win32 community. Have a look at: http://timgolden.me.uk/python-on-windows/ Wow, Tim! Thanks for doing this. In particular, click through to the section on the Registry (which is the only

Re: [python-win32] Request for comments

2008-05-23 Thread Tim Golden
Kevin Horn wrote: I'd like to see a little more prose to go with the examples, not just code. No too much, but enough that the reader can understand WHY a certain task i s done a certain way (and maybe why you would want to do it in the first place). Thanks for this input Kevin. Would you

Re: [python-win32] Request for comments

2008-05-23 Thread Kevin Horn
On Fri, May 23, 2008 at 2:21 PM, Tim Golden [EMAIL PROTECTED] wrote: Kevin Horn wrote: Sphinx can auto-create Prev and Next links, which might be useful. Unless I misunderstand you, I think it's doing that, both across the top Navigation bar and along the left sidebar. Or did you mean

Re: [python-win32] Request for comments

2008-05-23 Thread bob gailer
Tim Golden wrote: I have a request of the python-win32 community. Have a look at: http://timgolden.me.uk/python-on-windows/ In particular, click through to the section on the Registry (which is the only section which has anything useful in it!) and then tell me what you think. Thanks for a

Re: [python-win32] Request for comments

2008-05-23 Thread Tim Roberts
bob gailer wrote: Please omit the space before ( in code. I find that very distracting. Example: print result.Properties_ (sValue).Value # current print result.Properties_(sValue).Value # preferred, and how most code I've seen looks. Do you understand that this is strictly a personal