Re: Strange method signature via COM

2007-03-02 Thread Richard Jebb
After digging around in the group archives I've figured it out. It's not been helped by my inability to identify the API's COM server/type library in the list produced by the MakePy utility, so I've largely been flying blind. Some posts on this same subject back in 1999 revealed the answer, namely

Re: Strange method signature via COM

2007-03-02 Thread Bruno Desthuilliers
Richard Jebb a écrit : > We are trying to use the API of a Win32 app which presents the API as a COM > interface. The sample VB code for getting and setting the values of custom > data fields on an object shows a method named Value(): > > getterobj.Value("myfield") > setterobj.Valu

Strange method signature via COM

2007-03-02 Thread Richard Jebb
We are trying to use the API of a Win32 app which presents the API as a COM interface. The sample VB code for getting and setting the values of custom data fields on an object shows a method named Value(): getterobj.Value("myfield") setterobj.Value("myfield") = newvalue Using Pyth