0
votes
What’s the purpose of noncreatable coclasses in IDL?
The noncreatable attribute is just a hint to the consumer of the object -- .Net and VB6, for example, when seeing this attribute, will not allow the client to create the object "the normal way", e. …
0
votes
COM / OLE / ActiveX / IDispatch confusion
Regarding OLE: COM has its roots in OLE. But today, OLE may be considered to be built on top of COM and is mostly used for what its name suggests -- document linking and embedding. While COM itself …
1
vote
Should out params be set even if COM function fails?
While the other answers are not wrong, they miss a very important point -- a COM server that intends to return a failure HRESULT MUST set all [out] parameters to NULL. This is not …
2
votes
How should I check that [out] params in COM can be used?
COM server methods that return a success HRESULT, yet set some of their output parameters to NULL are not very common. There are a few cases (IClientSecurity::QueryBlanket comes to mind) where this …
3
votes
When and why use CoLoadLibrary?
Have a look at the code:
mov edi,edi
push ebp
mov ebp,esp
push 8
push 0
push dword ptr [ebp+8]
call dword ptr [ole32!_imp__LoadLibraryExW (71eb1214)]
pop …
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 …
0
votes
COMException (8004014) using ShockwaveFlashObjects in VS2008 on Vista x64
80040154 is REGDB_E_CLASSNOTREG. Most likely, your code runs in a 64 bit process but Shockwave is only installed for 32 bit.
…
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
What is required to enable marshaling for a COM interface?
Typelibs are one way to support marshalling, proxy/stub DLLs (genereated from the IDL) are another. In both cases, however, you'll need the IDL in the first place.
If Microsoft does not pr …
2
votes
WCHAR array not properly marshalled
IIRC, the typelib marshaller ignores the size_is attribute -- thus, only 1 char is marshaled.
…
1
vote
How do I start an out of process COM server as another (more privileged) user
Use RunAs -- see http://msdn.microsoft.com/en-us/library/ms680046(VS.85).aspx.
N.B. This setti …
1
vote
Why does COM+ ignore the apartment threading model?
STA guarantees that your object is only accessed from a single, specific thread -- no protection against shared variable is required.
I remember that for VB6, there was a special mode (I do …
0
votes
Loading/interacting with a vb6 COM dll from a 64bit Application
If you have lots of existing VB6 code that uses to run in-process, I'd first question if migrating to 64 bit is really worth the effort. 64 bit has many advantages for server apps, but for desktop …
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 …
1
vote
Diagnosing an app that fails to halt
The finalizer thread is idle and is waiting for work -- its trace looks fine. Theread 0 also looks fine and is idle -- it waits for the next UI message.
Can you give some details on how yo …
