27
votes
4answers
1k views
How does the C# compiler detect COM types?
EDIT: I've written the results up as a blog post.
The C# compiler treats COM types somewhat magically. For instance, this statement looks normal...
Word.Application app = new W …
18
votes
4answers
4k views
Is there an embeddable Webkit component for Windows / C# development?
I've seen a few COM controls which wrap the Gecko rendering engine (GeckoFX, as well as the control shipped by Mozilla - mozctlx.dll). Is there a wrapper for Webkit that can be inc …
9
votes
4answers
413 views
What does registering a DLL do?
I know how to register dlls but I've never really been sure why I'm doing it or under what conditions a dll must be registered. Could somebody explain or point me to some document …
8
votes
4answers
2k views
Generate manifest files for registration-free COM
I have some applications (some native, some .NET) which use manifest files so that they can be deployed in complete isolation, without requiring any global COM registration. For ex …
8
votes
4answers
301 views
What is the best book to learn COM?
I 've managed to somehow avoid learning COM so far, although I 've been programming C++ under Windows for several years now.
At this point there are lots of bits and pieces relate …
8
votes
7answers
1k views
How to Create an Outlook Plugin using Delphi?
Hi,
I'm working on a database project and I need to create Outlook 2007 plugin that saves the current previewed message into my database.
Can someone give me a step-by-step guide …
8
votes
4answers
965 views
Which is correct? catch (_com_error e) or catch (_com_error& e)?
Which one should I use?
catch (_com_error e)
or
catch (_com_error& e)
7
votes
3answers
71 views
How can I detect all interfaces a COM object implements?
Is there any way for a consumer to enumerate all interfaces implemented by a given COM object?
7
votes
4answers
789 views
Does C# clean up C++ allocated memory?
I have a hypothetical COM object with the following signature
void MemAlloc(ref double[] test, int membercount)
where the memory is allocated in C++ using new/malloc. Once this …
7
votes
9answers
950 views
Hosting the .NET runtime in a Delphi Program
I was looking into using some .NET code from within a Delphi program, I will need to make my program extensible using .net assemblies and predefined functions (I already support re …
7
votes
1answer
459 views
How do I write a working IThumbnailProvider for Windows Vista
I have written a thumbnail provider following the interfaces specified on MSDN. However, I have been unable to figure out how to register it in a way that Vista actually calls int …
6
votes
4answers
92 views
Any good tutorials on using COM from C#?
Hello.
For one of a side-projects i need to write a C# app that required to use a third-party INPROC COM object. Unfortunately, C# is not my primary programming language, so my kn …
6
votes
2answers
289 views
Windows 7 & VB Classic Code: Any runtime issues?
Microsoft has promised that VB6 code will continue to work on Windows 7, but has anyone noticed any gotchas specific to running VB6 code in the Windows 7 RC?
And for that matter, …
6
votes
8answers
863 views
Using a COM dll from C# without a type library
I need to use a COM component (a dll) developed in Delphi ages ago. The problem is: the dll does not contain a type library... and every interop feature (eg. TlbImp) in .NET seem t …
6
votes
4answers
418 views
Which version of MSXML should I use?
Seems like this would be a common question, though I could not find it on SO.
Which version of MSXML should I use in my applications, and more importantly, how should I decide?
…
