> 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
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