Tagged Questions
2
votes
1answer
675 views
Fastest way to call a COM objects method without using a RCW
I'm trying to find the cleanest and fastest way for calling a COM objects methods.
I was using a RCW for the object but every time a new version of the third party COM object comes out its GUID ...
1
vote
1answer
269 views
Has COM object been separated from its RCW?
I'm trying to fix problem with "COM object that has been separated from its underlying RCW cannot be used" error, and I think what's causing it is that COM objects are used on a thread that didn't ...
1
vote
2answers
486 views
What is the difference between an Interop and a RCW (Runtime Callable Wrapper)?
Is it just terminology?
0
votes
1answer
88 views
How to manage .Net's RCW COM object creation paramets (namely requested interface)?
I'm using external native COM component in my C# .Net application.
This COM dll doesn't have a type library, so I had to write the interop code myself, and having include/idl files I did it like ...
0
votes
1answer
85 views
How do i transfer this unmanaged code from asp to asp.net 2/mvc?
i'm a newbie to ASP.net interop features, so what i have right here is some unmanaged dll that i need to call from my asp.net mvc app.
the dll name is CTSerialNumChecksum.dll. i can easily call the ...
0
votes
1answer
297 views
Removing CompilerOptions directive for an interop
I've created an interop for a COM dll via tlbimp and added it to the assembly cache. To use this in an ASP.net page i need to include the following
<%@ Page Language="VB" Debug="true" ...