Re: [python-win32] Request for comments

2008-05-23 Thread Dahlstrom, Roger
I'd add to that that I prefer the space, and I only use notepad++ for coding. Everything worked fine for me. My only suggestion was that the navigation was a bit inconsistent on the front page - I had to scroll down to see what the "contents" were - the "registry" section was hidden at first.

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

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 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

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 min

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

[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 PROTE

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): import win32com.client project = win32com.client.Disp

Re: [python-win32] Py2exe and win32com.shell

2008-05-23 Thread Norm Petterson
On Fri, May 23, 2008 at 8:18 AM, Tejovathi P <[EMAIL PROTECTED]> wrote: > > > I opened pythonwin and tried importing wincom.shell. Its working > fine.! Then where am I doing wrong > > Hello Tejovathi, Googling py2exe win32com gave this reference among the first few: http://www.wired

[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. I

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, syste

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 use

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 funct