I have a third party assembly with a public abstract class implementing a certain COM interface. Something to the effect of
Until recently, I believed that the .NET runtime only increases the reference count of COM objects by 1 when creating a runtime-callable wrapper, and that only one such runtime-callable wrapper is cre
Question: I need to call a C# dll from a C++ executable. I use COM, and it works fine 开发者_JS百科for int, long and bool. But I can\'t get a string along...
I am trying开发者_JS百科 to gain access to a .NET class library in Microsoft Excel. To do this I know that the .NET class library must be registered with COM. So I tried going to my Assembly Info and
I am using COM Interop. I have a call in VB6 which returns a string of roughly 13000 chars. If I execute the call in pure VB6 it takes about 800ms to execute. If I execute it via c# and COM Interop it
So i\'ve got this little static method in a .Net class which takes a string, uses some stored public key and returns the encrypted version of that key.This is basically so some user entered data can b
I am currently working on a .Net application which makes HTTP requests to some web applications hosted on a IIS server. The application is deployed through ClickOnce and is working fine on simple netw
When I run the following code, I get the exception below: \'\'# NOTE: ExcelApp is a Private main form variable
I have a [ComRegisterFunction] that I am using to register a BHO Internet explorer extension.During registration on 64-bit windows 7 machines, a UnauthorizedAccessException
Question: I have a .NET dll which I use from a C++ program. Now I have to register the dll programmatically on a deployment computer.