in design time activeX properties

2007-08-28 Thread vml
Hello, Does anybody know how to modify the property of a design-time activeX property ? using win32com thank you for your help, regards, Victor -- http://mail.python.org/mailman/listinfo/python-list

ActiveX control in python vs ActiveX control in vb 6 (piece of code)

2007-08-22 Thread vml
Hello, I am trying to mograte from vb 6 to python. I have a very usefull AX control. It can be : -just a bitmap -an active picture where you can plot data and put cursors -a data explorer Those 3 behavior are driven by one property in visual studio when you insert the AX control in a

Re: python 3.0, pywin32 and scipy

2007-08-02 Thread vml
On 2 août, 22:30, sturlamolden <[EMAIL PROTECTED]> wrote: > On Aug 2, 6:01 pm, vml <[EMAIL PROTECTED]> wrote: > > > - my script using pywin32 for the COM layer and scipy for the maths > > won't work under 3.0 > > Why not? > > > - will we have the e

python 3.0, pywin32 and scipy

2007-08-02 Thread vml
Hello, I am trying to promote python in my job, my collegue only see matlab and microsoft scripting language. I understood that there willl be no backward compatibility between python 2.x and 3.0, does it means that: - my script using pywin32 for the COM layer and scipy for the maths won't work

Re: passing an array of variant in vb to a python COM object = win32com bug ?

2007-05-04 Thread vml
On 4 mai, 06:56, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Thu, 03 May 2007 09:41:57 -0300,vml<[EMAIL PROTECTED]> escribió: > > > On 3 mai, 14:20, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > >> En Thu, 03 May 2007 04:54:43

Re: passing an array of variant in vb to a python COM object = win32com bug ?

2007-05-03 Thread vml
On 3 mai, 14:20, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Thu, 03 May 2007 04:54:43 -0300, vml <[EMAIL PROTECTED]> escribió: > > > > > I have a python com object which contains a method to inverse an array > > in vb 6 th

Re: python,win32com,scipy and vb 6 : no module named scipy

2007-05-03 Thread vml
On 3 mai, 03:30, "Terry Reedy" <[EMAIL PROTECTED]> wrote: > scipy is a 3rd party package which I believe you get from the same place, > more or less, as numpy. the bug was between the chair and the keyboard;) -- http://mail.python.org/mailman/listinfo/python-list

passing an array of variant in vb to a python COM object = win32com bug ?

2007-05-03 Thread vml
I have a python com object which contains a method to inverse an array in vb 6 the definition of the class is : class Fop: _public_methods_ = [ 'SqVal' ] def SqVal(self,*val): #vol=(val[0][0],val[0][1]) #mat1=mat((vol)) #up=linalg.inv(mat1) return str(val)#u

Re: python,win32com,scipy and vb 6 : no module named scipy

2007-05-02 Thread vml
On 2 mai, 23:37, vml <[EMAIL PROTECTED]> wrote: > Hello, > > I am really new in python scipy win32com and scipy I tried to setup a > COM server to interact with vb 6 the pythom COM server is : > > from win32com.server import exception, register > import pythoncom, win3

python,win32com,scipy and vb 6 : no module named scipy

2007-05-02 Thread vml
Hello, I am really new in python scipy win32com and scipy I tried to setup a COM server to interact with vb 6 the pythom COM server is : from win32com.server import exception, register import pythoncom, win32pdhutil, winerror import math import numpy import sys sys.path.append('D:\\soft\python2

Re: python and activeX control

2007-04-28 Thread vml
On 28 avr, 23:09, "Méta-MCI" <[EMAIL PROTECTED]> wrote: > Bonsoir ! > > Flagrant délit de manque de confiance dans les newsgroups français en vue... > > Ha ! Ha ! Ha ! Bonne chance avec les US... c'est vrai j'avoue ;) -- http://mail.python.org/mailman/listinfo/python-list

python and activeX control

2007-04-28 Thread vml
I have an application that I want to automatised trough a COM layer or (DCOM)... I can access to all the method of the COM objects with python and win32com when this application is running If the application is not running, I can not access to all the method of the object. Usually to overcom

Re: how to serialize a COM object ?

2007-04-28 Thread vml
On 24 avr, 23:53, Neil Hodgson <[EMAIL PROTECTED]> wrote: > vmlwrote: > > I have a COM object. > > > I would like to pass this com object from a server to a client through > > a socket. > > As Diez mentioned, this may be possible through Distributed COM > (DCOM). Its not very popular any more w

how to serialize a COM object ?

2007-04-24 Thread vml
I have a problem : I have a COM object. I would like to pass this com object from a server to a client through a socket. I tried to put the com object into a stringIO with the pickle module but : "can't pickle PyIDispatch objects" Is there other possibilities to pass a COM object through a ne

python win32com and dispatchbaseclass

2007-03-30 Thread vml
I am a newbie in python and com. I am trying to use python and com to access to a software. I had a look in the file .py describing the interface (generated by makepy) and I found some dispatch base class... My fisrt question is : is it possible to invoke a com object dispatch base class? other