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 to do something like import win32Com.client pt = win32com.client.Dispatch ("Test.PyTest") pt.Name = "fred" print pt.Name However it doesn't look like the Test.dll is known. Any pointers? Thanks Nick -- http://mail.python.org/mailman/listinfo/python-list