Hi all,
I try to create a com object dll and I found some trouble:
I'm using the code provided from the git repository
1) the documentation say to use the MakeComServer.py but this file is
under the utils folder so at least python utils/MakeCOMServer.py options
2) The MakeComServer.py dose not work at all, I've fix it adding the
following line at the main section:
before:
try:
print
print epilog
except KeyboardInterrupt:
after:
try:
create(args, opts.debug, opts.verbose, opts.workdir, opts.ascii)
print epilog
except KeyboardInterrupt:
3) once the new .py file is genereted and a spec file too, if I try to
register the dll with regsvr32 [dll genereted ] I get an error: The
module ...mymodule.. whose loaded but the entry-point DllRegisterServer
was not found.
but if I look at the dll.. with dependencywolker I could find only the
dllRegisterServerEx and the DllUnregisterServerEx
any help is appreciated
regards,
Matteo
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.