[python-win32] passing image as string/stream from python to vb

2006-11-17 Thread Michael Schulz
Hi, I'm a beginner on the python-win32 field, so please excuse stupid questions ;-) We have an vb application that uses a python com server. This python module generates images in a stringio object. We want to pass the image as a string / stream to the vb application. This is in a way working,

Re: [python-win32] Unpackaged binary version of pywin32

2006-11-17 Thread Ross McKerchar
Paul Moore wrote: On 11/14/06, Ross McKerchar [EMAIL PROTECTED] wrote: I would like to repackage the win32 extensions as an msi using the the bdist_msi distutils extension, allowing me to deploy the package to multiple clients using group policy. The executable installer

[python-win32] RE working in interactive but not in regular code

2006-11-17 Thread James Matthews
I have this RE things= re.findall(r'\?Brand\=\w+\pg=\w+',site) now when i run it against a site it returns everything in a list ( in the interactive interpreter however when i run it start alone it won't work?? Why? -- http://www.goldwatches.com ___

Re: [python-win32] Unpackaged binary version of pywin32

2006-11-17 Thread David Fraser
Ross McKerchar wrote: Paul Moore wrote: On 11/14/06, Ross McKerchar [EMAIL PROTECTED] wrote: I would like to repackage the win32 extensions as an msi using the the bdist_msi distutils extension, allowing me to deploy the package to multiple clients using group policy. The

Re: [python-win32] Does pywin32-odbc support several users?

2006-11-17 Thread rieh25
Ok, thanks... Jim Vickroy wrote: rieh25 wrote: I'm thinking of implementing pywin32 to implement access to an Oracle database, to users of an application built in Zope . Is this a good idea, or is pywin32's odbc feature intended for a single user? Thanks pywin32's odbc interface

Re: [python-win32] RE working in interactive but not in regular code

2006-11-17 Thread Tim Roberts
James Matthews wrote: I have this RE things= re.findall(r'\?Brand\=\w+\pg=\w+',site) now when i run it against a site it returns everything in a list ( in the interactive interpreter however when i run it start alone it won't work?? Why? Show us an example, including what you expect and what

Re: [python-win32] RE working in interactive but not in regular code

2006-11-17 Thread Bob Gailer
James Matthews wrote: I have this RE things= re.findall(r'\?Brand\=\w+\pg=\w+',site) now when i run it against a site it returns everything in a list ( in the interactive interpreter however when i run it start alone it won't work?? Why? You will probably get more help if you tell us what