On 7/11/05, Amit Upadhyay <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a COM server which is working fine on my development machine,
[snip]
> But when I tranfer it to some other machine, i can not create an
> inproc instance of it using win32com.client.dispatch, it gives me:
>
> Python 2.3.5 (#6
Dear Amit Upadhyay,
Try using cx_Freeze
http://starship.python.net/crew/atuining/cx_Freeze/
Bill Vax PAPADOPOULOS
__[EMAIL PROTECTED][EMAIL PROTECTED]
___
Python-win32 mailing list
[email protected]
http://mail.pyt
Hi,
I have a COM server which is working fine on my development machine,
and I am trying to create a distributable using py2exe.
Setup.py file is something like this:
# setup.py
from distutils.core import setup
import py2exe
import sys
sys.argv.append("py2exe")
import mycomsvr
opts = {
"