Hi I created C# Exe Com Server and refer it from VB6 application. The problem is that all the enums are exposed with \"strange name\" in the vb app: EnumName_EnumeItem, while reffered from then VB6 co
I am opening VS2010 solutions using C# and VS2010 automation. I open the solutions like this: Type type = Type.开发者_开发百科GetTypeFromProgID(\"VisualStudio.DTE.10.0\", true);
In an attempt to oversimplify my issue, I\'ll try to keep it short: I\'m using the pro version of Unity, and I have 2 DLLs:
There is the Deploying COM Components with ClickOnce article in MSDN that says that native DLLs also could be referenced:
I have a com method where I want to pass information about 7 days of the week encoded in an unsigned开发者_开发问答 long (to represent \"selected\" hours of the day in the week)
Ruby on Windows has the win32::ole library that allows Ruby to act as a COM client, similar to VBScript and o开发者_Python百科ther scripting languages (Python, Perl, etc. with win32 bindings). However
I have developed a C++ based COM object to use it in a VB6 application. Now I need to add some logging to catch some of the bugs. I discovered from the answer to \'How to debug COM object in Visual St
Using C#, I\'m trying to load a JPEG file from disk and convert it to a byte array. So far, I have this code:
i\'m calling a C# com interop dll from classic asp. i want to send name value pairs to the c# dll. tried using dictionary object in classic asp and accepting it using the same dictionary object (sc
If I have an IUnknown *p开发者_运维百科tr, do I need to call Release() on every interface I obtain through ptr->QueryInterface(), in addition to calling ptr->Release() when I\'m done with ptr?