Re: [python-win32] com servers and py2exe

2006-06-25 Thread Mark Hammond
> Py2exe supports making com servers as dlls or as exes. After I > create a com server with py2exe, how do I get it registered? If it is a .exe, you just run it. If it is a DLL, you use regsvr32.exe to register it - ie, you register them just like any other COM EXE or DLL files. > If I need to

Re: [python-win32] Simple Com Event Handling for Multiple Com Objects

2006-06-25 Thread Nawal
Hello Everybody, Is there any simple way to handle all Com Events in a Simple Class? Nawal nawal wrote: > In activeX Scripting, I can Create Two Button Events Like > > OnButton1() > OnButton2() > > In Normal Python Com Event Handling: I have to declare two classes > > class ButtonEvent1 > O