Tagged Questions
COM interop is the layer that allows .NET assemblies to communicate with standard COM objects and libraries.
116
votes
17answers
46k views
How to properly clean up Excel interop objects in C#
I'm using the Excel interop in C# (ApplicationClass) and have placed the following code in my finally clause:
while (System.Runtime.InteropServices.Marshal.ReleaseComObject(excelSheet) != 0) { }
...
74
votes
14answers
5k views
Anatomy of a “Memory Leak”
In .NET perspective:
What is a Memory Leak?
How to understand whether your application leaks? What are the effects?
How to prevent a memory leak?
If your application has memory leak, does it go away ...
44
votes
8answers
59k views
Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80040154
I developed a Windows service using C#.NET to generate PDF report. To generate PDF file I am using a third party dll. The application is running in my Windows XP platform. When I deployed the service ...
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: ...
13
votes
6answers
765 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:
// ...
11
votes
4answers
801 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., ...
10
votes
8answers
939 views
Signing my assembly with a strong name stops it from working
A colleague of mine created an assembly in VB.net for use with JScript via COM interop. The assembly used to work fine, but we signed it and now it only seems to work on Windows 7 machines. I've ...
9
votes
3answers
720 views
What is the Guid attribute that appears above classes in C#?
I've picked up some C# code recently and one of the classes has a Guid attribute present above it. I don't understand what this is or what it's used for.
Can someone give me a rundown of what it is, ...
9
votes
1answer
2k views
“Register for COM Interop” vs “Make assembly COM visible”
What is the real difference between these two options? What I know is:
Register for COM Interop
This options executes regasm on the assembly and registers the assembly as an COM component(or maybe ...
9
votes
1answer
521 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?
8
votes
10answers
1k views
Is it possible to intercept (or be aware of) COM Reference counting on CLR objects exposed to COM
I have rephrased this question.
When .net objects are exposed to COM Clients through COM iterop, a CCW (COM Callable Wrapper) is created, this sits between the COM Client and the Managed .net object.
...
8
votes
1answer
390 views
Releasing temporary COM objects
Consider the following C# code using a COM object.
MyComObject o = new MyComObject;
try
{
var baz = o.Foo.Bar.Baz;
try
{
// do something with baz
}
finally
{
...
8
votes
4answers
2k views
COM Interop without regasm
I'm a limited user, and I need to write an Outlook macro that exposes a C# library in Outlook 2003 and 2007.
I do not have any admin privilges at all, not even at install time, so I can't run ...
8
votes
3answers
3k views
How Add a COM-Exposed .NET Project to the VB6 (or VBA) References Dialog?
I have created a .NET assembly that is exposed to COM according to the exceptional article Build and Deploy a .NET COM Assembly by Phil Wilson.
And everything works fine in the sense that the .NET ...
7
votes
2answers
684 views
How do I return an array/list/collection of objects from C# to VB6
I am creating a COM Visible C# object to proxy calls to a webservice for VB6 application. I have a method that returns an array of objects.
public DocActionReport[] ...
7
votes
3answers
306 views
Language neutral plugin architectures
I am looking at extending an existing application through the use of a plugin architecture. The application id written in Delphi, but I want to be able to implement various plugins in whatever ...
7
votes
3answers
570 views
Fastest way to access VB6 String in C#
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 ...
7
votes
2answers
174 views
Am I calling a .NET object or a COM object?
An interesting question arose today. Let's say I have a .NET object that implements a certain interface IMyInterface and is also COM Visible.
Now, I load the type from its ProgID and cast to a ...
7
votes
3answers
698 views
Java SWT interop with COM - putting a float[] into a Variant?
In my Java SWT application I'm hosting an 3rd party ActiveX control. I'm using OleClientSite to do this.
// Ah, this works. :-)
OleAutomation comObject = new OleAutomation(...);
There are 2 easy ...
7
votes
3answers
3k views
Is it possible to test a COM-exposed assembly from .NET?
I have a .NET assembly which I have exposed to COM via a tlb file, and an installer which registers the tlb. I have manually checked that the installer works correctly and that COM clients can access ...
6
votes
2answers
72 views
What's the difference between HandleRef and GCHandle?
What's the difference between HandleRef and GCHandle?
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.handleref.aspx
...
6
votes
2answers
63 views
Create VB6 application using a class in a DLL, then swap out that DLL after build?
so my question is relatively simple, can I create VB6 application that references a class in a dll, and then substitute that dll for another at runtime?
Now my intial guess is... no chance in VB6.
...
6
votes
1answer
218 views
Does .NET have a linker?
From Jon Skeet's blog:
What does the following comment mean?
// The line below only works when linked rather than
// referenced, as otherwise you need a cast.
// The compiler treats it ...
6
votes
4answers
1k views
Using Wrapper objects to Properly clean up excel interop objects
All of these questions:
Excel 2007 Hangs When Closing via .NET
How to properly clean up Excel interop objects in C#
How to properly clean up interop objects in C#
struggle with the problem that C# ...
6
votes
1answer
6k views
Visual Studio 2010: Embed Interop Types
I found some information about this on Scott Hanselmans Blog
Does anybody exactly know what this mean?
Is this only for the Office Primary Interop Assemblies, or can I also use this to Embed my ...
5
votes
1answer
400 views
Passing strongly typed arguments in .NET COM interop
I have two .NET classes exposed via COM interop - let's say Foo and Bar, and I need to pass an argument of type Foo to a method defined in Bar. Something like this:
[ComVisible(true)]
public class ...
5
votes
2answers
436 views
Register for COM Interop
When the Register for COM Interop option in the build properties is checked, I get an error:
Cannot register assembly -access
denied
When the option is unchecked, the project builds without ...
5
votes
6answers
3k views
Fastest way to interface between live (unsaved) Excel data and C# objects
I want to know what the fastest way is of reading and writing data to and from an open Excel workbook to c# objects. The background is that I want to develop a c# application that is used from Excel ...
5
votes
2answers
373 views
What is the correct way to implement a Managed Property Handler Shell Extension?
Now that .NET CLR 4.0 supports side by side (SxS) operation it should now be possible to write shell
extensions in managed code. I have attempted this and successfully coded a Property Handler
that ...
5
votes
1answer
489 views
Which collection interface should I use in .NET for COM-interop?
That is a followup from my previous question, but you don't need to read it to understand that one.
I'm designing an interface in .NET that would be consumed from COM applications (mainly VB6, but ...
5
votes
2answers
731 views
Calling a native callback from managed .NET code (when loading the managed code using COM)
I am really confused by the multitude of misinformation about native / managed interop.
I have a regular C++ exe which is NOT built using CLR stuff (it is neither Managed C++ nor C++/CLI and never ...
5
votes
1answer
608 views
Hosting Microsoft Office application inside Silverlight 4?
I know that Silverlight 4 has support for COM interop via the AutomationFactory class.
dynamic excel = AutomationFactory.CreateObject( "Excel.Application" );
excel.Visible = true;
But this creates ...
5
votes
2answers
243 views
Register managed assemblies with COM without using the GAC
I'm wondering if it possible to register assemblies with COM without having to register it with the GAC. We need to deploy some .net libraries that are exposed to classic asp using a CCW. But ...
5
votes
3answers
1k views
Force .NET interop to use local COM DLL
Is it possible to force an interop assembly to reference a local copy of its associated COM DLL?
Here's the scenario:
I have a .NET app that references an interop assembly (Interop.OTAClient.dll), ...
5
votes
6answers
2k views
Can't instantiate a COM object written in C# from VBA (VB6 ok)
Using VS 2008, here is my COM object
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace TestCom
{
...
4
votes
1answer
110 views
x86 with COM Interop Compiled on x64
I have a small application that I wrote that imports both the iTunes and MediaMonkey COM interfaces. The app is developed and built on my laptop with is x64 but run on my media PC which is x86. It ...
4
votes
1answer
108 views
Can I make a function COM Only? (Opposite of <Runtime.InteropServices.ComVisible(False)> )
I have some functions in my VB.NET DLL which I can 'hide' from my VB6 app by using the following:
<Runtime.InteropServices.ComVisible(False)> _
But is there a way to make a function ONLY ...
4
votes
1answer
399 views
How to correctly marshal VB-Script arrays to and from a COM component written in C#
I'm building a COM object in C# (.Net 4.0) to be used in an classic asp site. Now I'd like to know what's the proper way to marshal VB-Script arrays (single and multidimensional) back and forth ...
4
votes
1answer
344 views
COM Interop .NET STA
If I have an STA thread in .NET, and I create an STA COM object in that thread, and then the thread finishes -- does that kill that instance of the object?
Is my understanding correct that STA COM ...
4
votes
1answer
244 views
Do I need to release the COM object on every 'foreach' iteration?
Here's the (potential) problem:
I create a COM object, and then use a 'foreach' to iterate through each element in a collection it returns. Do I need to release each individual element I iterate ...
4
votes
3answers
67 views
Strange COM behaviour called from .net
i am working on an application which calls the COM component of a partner's application. Ours is .Net, theirs isn't. I don't know much about COM; I know that the component we're calling is late-bound ...
4
votes
1answer
177 views
When does the .NET runtime hold a reference count > 1 for COM objects?
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 ...
4
votes
3answers
3k views
Register a C#/VB.NET COM dll programatically
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.
How do i do that (programmatically! not using regasm) ?
I ...
4
votes
1answer
623 views
How to mark .NET objects exposed to COM-interop as single threaded?
When defining a COM-visible class in C++ I can define the supported threading model in the header file (the threading(single) line):
[
coclass,
default(IComInterface),
threading(single),
...
4
votes
1answer
3k views
com4j versus jacob to call COM methods from Java
I maintain a legacy Java application that uses Jacob, or Java-COM Bridge, to make calls via the COM interfaces of MS VBA and MS Word. I have been looking at com4j from Sun, and it looks promising.
...
4
votes
1answer
775 views
Why would I use “Both” COM threading model instead of “Free”?
According to this article if I register my COM object with either "Both" or "Free" threading model that object must be completely thread-safe. Specifically all accesses to global shared variables must ...
4
votes
2answers
793 views
How to properly clean up interop objects in C#
This is a follow on question to
How to properly clean up excel interop objects in c#.
The gyst is that using a chaining calls together (eg. ExcelObject.Foo.Bar() ) within the Excel namespace ...
4
votes
1answer
1k views
COM Interop (how to pass an array to the com) via classic ASP
I need to create a com object for my classic asp, since i can create a .net Assembly and have it 'Interop' with com, so i proceeded to create a .net Assembly like this:-
using System;
using ...
4
votes
2answers
1k views
Returning an array from JS to C# with COM-Interop
I'm returning some data from my JavaScript code to my C# code via COM Interop and the WebBrowser WPF control. I have successfully returned the data which looks like this in Javascript:
var result = ...
4
votes
2answers
2k views
How to return a JavaScript 'native' array from a C# method?
I'm trying to call a C# method from JavaScript by using ActiveXObject:
var myobj = new ActiveXObject('myobject');
var arr = myobj.GetArray();
Eventually, arr will contain a SAFEARRAY object, but ...