Re: [python-win32] Using COM DLL

2014-08-13 Thread Christiaan B v Zyl
> > > Are you saying that the VB program works correctly without registering the > DLL first? > You have to reference the DLL from the VB project. > Now, regsvr32 does nothing except load the DLL and call DllRegisterServer. > So, you could, in fact, do this: > sdk = cdll.LoadLibrary(?PasSDK

Re: [python-win32] Using COM DLL

2014-08-12 Thread Tim Roberts
On Aug 12, 2014, at 4:28 AM, Christiaan B v Zyl mailto:[email protected]>> wrote: I have a DLL, it is an SDK for the Pastel Partner accounting system. Using Dependency Walker I can see that the DLL has the following methods: DllRegisterServer, DllUnregisterServer, DllGetClassObject Wit

[python-win32] Using COM DLL

2014-08-12 Thread Christiaan B v Zyl
I have a DLL, it is an SDK for the Pastel Partner accounting system. Using Dependency Walker I can see that the DLL has the following methods: DllRegisterServer, DllUnregisterServer, DllGetClassObject With the library there came a sample VB program that referenced the DLL and instantiated it like