1
vote
creating long-lived server for other applications on windows
Your requirements are a bit contradictory -- if the server has to run indefinitely, regardless of whether there are clients to serve or not, and the process has to be shared among all clients, rega …
1
vote
Find COM DLL path from Com Interop Assembly
Once you've created an object from the respective COM server, its DLL must have been loaded. So you could use P/Invoke and call GetModuleHandle( "mycomserver.dll" ) -- that gives you the path of th …
1
vote
Why do COM events cease to work when we use unit testing with Microsoft Visual Studio 2008?
Without further details, this is hard to diagnose. However, it is possible that this is actually an apartment issue: IIRC, VS runs tests in an STA. If your application uses an MTA to run the same c …
0
votes
COM event with binary data in arguments
You basically have two options: use a SAFEARRAY of BYTEs or stuff the data into a BSTR. The latter, although ugly, used to be the default hack to pass binary data to VB6 components. Althou …
