Re: [python-win32] C++ problem (was rebuilding 210 with VC8 woes)

2007-01-25 Thread Howard Lightstone
"Howard Lightstone" <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > While trying to rebuild pywin32 using VC8 (after a couple of distutils > patches...), I have reached my C++ limit. I got all the way to > building pythonwin and ... > > > I am getting an error as follows: > > d:\python

Re: [python-win32] using a COM interface with [in, out]

2007-01-25 Thread Rex Corrovan
The problem was actually that the COM interface had not been fully implemented. The API was just bouncing back input. The COM server is not mine, I am just required to write code against it. The fact that this API was not fully implimented was not apparent until I started delving into the VB co

Re: [python-win32] Launch process

2007-01-25 Thread le dahut
Thanks, but finally I use subprocess.Popen(cmd, shell=True) which sets SW_HIDE in startupinfo properties and with which you can wait for process' exit code using subprocess.Popen(cmd, shell=True).wait() Gabriel Genellina wrote : > At Wednesday 24/1/2007 05:40, le dahut wrote: > >> What's the b