Re: [python-win32] filling Windows properties "Summary" tab?

2005-06-23 Thread Mark Hammond
These properties generally work for COM "structured storage" files. Microsoft Office documents and a number of others use this format, and the win32com functions allow you to get and set these properties.   If the files are not these COM storage files, then you may need to look at creating a

[python-win32] filling Windows properties "Summary" tab?

2005-06-23 Thread Ray Schumacher
The Summary tab of of a file's properties has Title, Subject, Author, etc. Could those be filled in via py2exe or ? I tried them as attributes of Target; no error, but no result.     Ray ___ Python-win32 mailing list Python-win32@python.org http://m

Re: [python-win32] manual Install of Python into Windows PE

2005-06-23 Thread Blake Garner
Ok, looks like this was fairly simple in the end.. python24.dll and msvcr71.dll need to be added to the \windows\system32 directory. Other than that I just copied the whole python24 directory onto my boot cd image. everything seems to work so far.. Blake- On 6/22/05, Roel Schroeven <[EMAIL PR

[python-win32] Howto create Array of Variants by ref (win32com)

2005-06-23 Thread Martin Kuner
Hi, I have to call a function via ActiveX whith the following interface object.Call(paramName, paramVals) where paramName: array of strings by ref paramVals : array of variants by ref How can I do that, when paramVals i.e. is an array of strings ? I tried it in the following way but without effo