Re: [python-win32] py2exe com_server newbie problem

2014-12-10 Thread Tim Roberts
Blair Hall wrote: By using Dependency Walker I can see that, during the registration of the DLL complied on the win professional machine, the DLL loads a version of MSVCR90.dll that it finds in the Windows path (which is not the one bundled in a manifest by py2exe). However, the DLL complied

Re: [python-win32] py2exe com_server newbie problem

2014-12-07 Thread Blair Hall
Update I now have something working, but not everywhere :-( I have two different machines, both Win7 64-bit (one professional the other home), both with identical versions of Python 2.7.8 and py2exe 0.6.9. I can create a COM server DLL on the machine running Win7-Home (machine A) but

[python-win32] py2exe com_server newbie problem

2014-09-25 Thread Blair Hall
I have been working on this all day, with no joy. Some help would be appreciated :-) I have a simple COM server (that I found on the internet): #--- import pythoncom import sys class HelloWorld: #pythoncom.frozen = 1 if