[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 effort.
oViLogPrint.call(["strEntry","Error"],["Hello World"])
but it doesn´t work.

Has someone a plan for that ?

BTW: That´s one function of the LabVIEW ActiveX interface

Thanks,
Martin
___
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32


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 PROTECTED]> wrote:
> Blake Garner wrote:
> 
> > I will look into that...
> >
> > Although I would prefer to find out about all registry changes or
> > files that get installed outside of the python24 directory.
> 
> I guess you could distill that information from the installer script --
> I think there is a script that creates the .msi somewhere in the Python
> source tree.
> 
> --
> If I have been able to see further, it was only because I stood
> on the shoulders of giants.  -- Isaac Newton
> 
> Roel Schroeven
> 
> ___
> Python-win32 mailing list
> Python-win32@python.org
> http://mail.python.org/mailman/listinfo/python-win32
>
___
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32


[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://mail.python.org/mailman/listinfo/python-win32


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 
shell extension, so you can add your own custom dialog page (including any 
properties you like) to the explorer dialog.
 
Mark

  -Original Message-From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On 
  Behalf Of Ray SchumacherSent: Friday, 24 June 2005 8:14 
  AMTo: python-win32@python.orgSubject: [python-win32] 
  filling Windows properties "Summary" tab?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://mail.python.org/mailman/listinfo/python-win32