My classes are as follows [ComVisible(True)][GUID(...)] public interface IMyComInterface { void DoThis(string[] params);
With r开发者_JAVA百科egard to this question, how do I make VS2010 call the Outlook COM object regardless of DLL version?
I have a bunch of COM objects which all implement the same interface, and need to create one of them as chosen at runtime from a list of options. Since I know the CLSID for each of the implementing CO
I have several COM projects that I\'m working with, some in C++, some in CPP/CLI, and some in C#.I have source and sink interfaces that I\'ve implemented in c# and exported with tlbexp that I want to
A COM DLL works in .NET 3.5 SP1, but gives exception in .NET 4.0 The full error is Retrieving the COM class factory for component with CLSID {B229C879-1B52-4DE9-A42B-75C415EA1EBC} failed due to th
I have been told that there is no such thing as optional parameters in C#. But you can use overload functionality and input varibles with default values such as:
I have ported VB6 code to VB.Net using the Visual Studio 2008 conversion wizard. The ported code compiles correctly.
How do I ma开发者_如何学Pythonke a C# DLL into a COM interop DLL that can be consumed by a VB6 application?This is the answer I wanted to find in StackOverflow but couldn\'t. It turns out to be fairly
I have a .h file with the following declarations: ////////////////////////////////////////////////////////////////////////////////
We have a COM interface declared and implemented in unmanaged C++. We no longer wish to maintain this assembly, but do need to make some changes, and still be backward compatible.