Tagged Questions

Component Object Model (COM) is a component technology from Microsoft, featuring remoting, language independence and interface-based programming. For questions about the COM serial port, you should use the [serial-port] tag instead.

learn more… | top users | synonyms (1)

86
votes
6answers
17k views

Could you explain STA and MTA?

I'm having trouble understanding STA and MTA. If you could explain it in your own words that would be great. Also what are Apartment threads and do they pertain only to COM? If so why?
68
votes
4answers
6k 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 Word.Application(); ...
43
votes
2answers
1k views

Is COM broken in XE2, and how might I work around it?

Update: XE2 Update 2 fixes the bug described below. The program below, cutdown from the real program, fails with an exception in XE2. This is a regression from 2010. I don't have XE to test on but ...
37
votes
9answers
26k 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 included in a .NET ...
35
votes
1answer
757 views

Use default authentication and separate cloaking/impersonation in DCOM call

I'm trying achieve two things with DCOM (Out of process) Set the process wide authentication using CoInitializeSecurity and its parameter pAuthList. Using cloaking to change the caller's identity in ...
30
votes
3answers
13k 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 example, the ...
26
votes
7answers
976 views

Is .NET “all COM underneath”?

I've been an admirer of Juval Lowy's teaching and guidance in .NET development for a number of years. He's also written one of my favorite books: Programming .NET Components. However on a recent ...
21
votes
5answers
4k views

Excel interop: _Worksheet or Worksheet?

I'm currently writing about dynamic typing, and I'm giving an example of Excel interop. I've hardly done any Office interop before, and it shows. The MSDN Office Interop tutorial for C# 4 uses the ...
19
votes
1answer
706 views

Is PIA embedding broken in .NET 4.0 beta 2?

A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to Microsoft.Office.Interop.Word to be embedded (set the "Embed Interop Types" = true in the reference ...
19
votes
5answers
3k 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? There is MSXML3, 4, ...
18
votes
4answers
7k views

Excel 2007 automation on top of a Windows Server 2008 x64

I’m well aware of the Microsoft support base article stating that it’s not supported to automate office products UI less. It seems that Windows Server 2008 x64 and Excel 2007 enforce the given ...
16
votes
4answers
2k views

Starting and stopping IIS Express programmatically

I am trying to build a small application in C# which should start/stop an IIS Express worker process. For this purpose I want to use the official "IIS Express API" which is documented on MSDN: ...
16
votes
1answer
372 views

Hosting Silverlight in C++

I'm a bit over my head here and would like some advice on how to go about. Basicly what I want to do is to be able to render and control silverlight inside my C++ application. I would like something ...
16
votes
4answers
1k views

What is the best book to learn COM? [closed]

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 related to COM and how it ...
16
votes
7answers
13k views

Fatal Execution Engine Error (79FFEE24) (80131506)

I'm encountering problems with my .NET Framework 3.0 SP1 application. It is a C# winforms application communicating with a COM exe. Randomly either the winforms app or the COM exe crashes without any ...
15
votes
3answers
14k views

What does stdole.dll do?

We have a large C# (.net 2.0) app which uses our own C++ COM component and a 3rd party fingerprint scanner library also accessed via COM. We ran into an issue where in production some events from the ...
14
votes
7answers
751 views

Calling COM visible managed component from managed code through COM wrapper

I have a 3rd party component, lets say FIPreviewHandler to handle preview, which implements IPreviewHandler. FIPreviewHandler is implemented as a Managed Component, and uses the IPreviewHandler ...
13
votes
3answers
327 views

Analog of COM programming in Linux/UNIX

The Component Object Model (COM) is (or was...) the way in Windows to provide language-neutral software components. Is there any programming model in Linux/UNIX with the same philosophy of code ...
13
votes
6answers
768 views

Why is C# null translated as Empty in VB6, instead of Nothing

I have a C# application that reference a VB6 dll. When I pass null from C# into VB6 dll function, the null is translated as value Empty (value) in VB6, instead of Nothing (object). For example: // ...
13
votes
3answers
3k views

Access x86 COM from x64 .NET

I have an x64 server which, since my libraries are compiled to AnyCPU, run under x64. We are needing to access a COM component which is registered under x86. I don't know enough about COM and my ...
12
votes
3answers
92 views

Any papers that explore performance issues and optimizations strategies available to C++ based COM applications?

Caveat: I'm not sure if this can be deemed as a proper SO programming question! I ran into severe performance penalties while working with the MS Office Suite due mainly to the millions of COM calls ...
12
votes
6answers
15k views

Windows 64-bit registry v.s. 32-bit registry

I heard on Windows x64 architecture, in order to support to run both x86 and x64 application, there is two separate/different sets of Windows registry -- one for x86 application to access and the ...
12
votes
2answers
2k views

Use OCX without registering it

Is it possible to use an ocx (ActiveX Control) on a winform (probably adding it programatically) without first having the ocx registered with regsrv32? What I'm trying to achieve is to enable xcopy ...
11
votes
9answers
738 views

what's the implication of void**?

When I develop in COM, I always see (void**) type conversion as below. QueryInterface(/* [in] */ REFIID riid,/* [out] */ void** ppInterface) What's exact meaning of it? IMHO, it tells the ...
11
votes
3answers
171 views

Why does accessing a COM object from .NET, without going through the Interop class, sometimes work?

When you interface a COM object from .NET code, VS creates an interop DLL, with interop classes. Example: You have a foo.dll the implements a COM library Foo, that includes an implementation of the ...
11
votes
4answers
803 views

How can I wrap a COM object in a native .NET class?

I'm using an extensive existing COM API (could be Outlook, but it's not) in .NET (C#). I've done this by adding a "COM Reference" in Visual Studio so all the "magic" is done behind the scenes (i.e., ...
11
votes
1answer
3k views

Why use FinalReleaseComObject instead of ReleaseComObject?

I know the basic difference as ReleaseComObject only decreases some counter by one and FinalReleaseComObject decreases it to zero. So what I usually hear is, call FinalReleaseComObject because then ...
11
votes
4answers
2k 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 documentation?
11
votes
8answers
3k views

Is there a way to force IE to unload an ActiveX control?

We have some dynamic HTML pages which include an <OBJECT> tag that instantiates an ActiveX control. The user may then navigate to another page, which contains an <OBJECT> tag that points ...
11
votes
7answers
9k views

Create Out-Of-Process COM in C#/.Net?

I need to create an out-of-process COM server (.exe) in C# that will be accessed by multiple other processes on the same box. The component has to be a single process because it will cache the ...
11
votes
10answers
3k 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 regular DLLs). After ...
10
votes
3answers
288 views

D support for COM

Wikipedia says the following: "On Microsoft Windows, D can access COM (Component Object Model) code." What kind of support for COM is present in D? Does it make life easier than using COM in C++. ...
10
votes
5answers
849 views

Delphi plugin framework

I want to design Delphi plugin framework. There are three options: 1. DLL 2. BPL 3. COM interface Every option has some disadvantage. DLL - Promblem with MDI apllication, forms from plugin cannot be ...
10
votes
1answer
5k views

Visual Studio 2010 64-bit COM Interop Issue

I am trying to add a VC6 COM DLL to our VS2010RC C# solution. The DLL was compiled with the VC6 tools to create an x86 version and was compiled with the VC7 Cross-platform tools to generate a VC7 DLL. ...
10
votes
6answers
1k views

Replacement for #import in Visual C++

We have large C++ project that we used to compile with the /MP switch to take advantage of multiple cores. However, we recently brought in some code that uses #import on a couple of tlb's, and ...
10
votes
2answers
2k views

Is anyone successfully using registration-free COM with .NET components?

Until recently, we were happily using registration-free COM for our native and .NET COM components. However, we ran into a weird issue where our application started crashing randomly on windows XP SP3 ...
10
votes
5answers
3k views

How to Create an Outlook Plugin using Delphi?

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 on how to create an ...
10
votes
4answers
3k 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)
10
votes
1answer
1k views

Unload a COM control when working in VB6 IDE

Part of my everyday work is maintaining and extending legacy VB6 applications. A common engine is written in C/C++ and VB6 uses these functions in order to improve performance. When it comes to ...
9
votes
1answer
274 views

Task.Factory.StartNew() runs on wrong thread if Modal dialog opened

Can anyone explain why, if a C++ application runs a .NET UI component (all on the main thread) which in turn spawns a modal .NET dialog and then tries to use ...
9
votes
1answer
145 views

Detecting cross-thread marshaling by COM RCW objects in C#

I'm working in a large multithreaded C# application handling bunches of COM interop. The other developers and I have ample opportunity to accidentally call Single-Threaded Apartment (STA) COM objects ...
9
votes
5answers
376 views

Possible to interact with a 64-bit COM server (Photoshop) from .NET?

I've been trying to write something in C# to interact with Photoshop, both by adding a COM reference and by late binding. It took me a while to realise that the code did work, but not with the 64-bit ...
9
votes
1answer
229 views

Using x64 dll in x86 application

I have a DLL that needs to operate large ammounts of memory and must be x64 to do that, but the application, which calls it is x86 and can not be converted to x64. COM is already used for interaction ...
9
votes
2answers
2k views

Is it possible for the .NET WebBrowser control to use IE9?

I realise it's an early release and unstable. I wouldn't dream of swapping out the default webbrowser control for IE9 in any other project, but in this case I specifically need IE9 to compare ...
9
votes
2answers
446 views

Does *every* Excel interop object need to be released using Marshal.ReleaseComObject?

Edit Please see also How to properly clean up Excel interop objects in C#. I recently came across this question, and it provided a lot of insight into the problem of how to properly dispose of COM ...
9
votes
3answers
958 views

What are all of the well-known virtual folder GUIDs?

There seem to be a few virtual folders which have GUIDs associated to them (control panel, desktop) - ::{00021400-0000-0000-c000-000000000046} // desktop Where the blazes are these defined? When ...
9
votes
1answer
524 views

How can I invoke a static method on a .NET object over COM interop?

Is it possible to invoke a static method on a .NET Object, via COM interop? I know I could write a wrapper class. What if I don't wanna do that?
9
votes
3answers
6k views

Replicating Visual Studio COM registration with a WiX Installer

Once upon a time, a young, naive engineer thought it would be a good idea to separate out some of the functionality for his app into a COM component, written in C#. Visual studio had all the tools to ...
9
votes
3answers
5k views

How to UAC elevate a COM component with .NET

I've found an article on how to elevate a COM object written in C++ by calling CoCreateInstanceAsAdmin. But what I have not been able to find or do, is a way to implement a component of my .NET (c#) ...
8
votes
4answers
210 views

C# add-in for application (via COM) freezes when a Control is added to the form?

I am developing an extension for existing application via COM. Current interface of the application to extend allows to create custom property windows and use them inside that application. Now, I ...

1 2 3 4 5 86