Re: [ADVANCED-DOTNET] Activating COM server from C#

2002-10-11 Thread Jeff Miller
We figured out what the problem was. In case this helps other people: Our application is a free-threaded COM server. Following standard protocol, it calls CoAddRefServerProcess() when a client creates a new COM object, and CoReleaseServerProcess() when a COM object is destroyed. When the last C

[ADVANCED-DOTNET] Activating COM server from C#

2002-10-08 Thread Jeff Miller
Hi, I have a Windows application which exports COM interfaces. When it starts up, it invokes CoRegisterClassObject() to register its class objects with the following flags: dwClsContext = CLSCTX_LOCAL_SERVER flags = REGCLS_MULTIPLEUSE My intent is that a single instance or activation of the ap