Re: Python, VB and COM

2004-12-21 Thread Nick
Thanks Steve. I eventually found the library. Running makepy over the library produced the requisite file. Its working. Help appreciated. Nick -- http://mail.python.org/mailman/listinfo/python-list

Re: Python, VB and COM

2004-12-21 Thread Steve Holden
Nick Leaton wrote: I have a class built as a class library. It makes a Test.dll, and I can call this from other VB projects class PyTest private _name as string Public Property Name() as string Get return _name End Get Set (byval value as string) _name = value End Set End Property End Class Then I

Python, VB and COM

2004-12-21 Thread Nick Leaton
I have a class built as a class library. It makes a Test.dll, and I can call this from other VB projects class PyTest private _name as string Public Property Name() as string Get return _name End Get Set (byval value as string) _name = value End Set End Property End Class Then I was expecting