COM interop is the layer that allows .NET assemblies to communicate with standard COM objects and libraries.
3
votes
2answers
82 views
VB6/COM Interop: where do these events come from?
I have written a COM-visible class library in C# 4.0 which I'm consuming with VB6. The thing works, only if I open up the VB6 object browser and look at the members exposed, I'm seeing an event for ...
0
votes
1answer
13 views
COM Interop, RPC server is unavailable in c#
I am using a COM Interop and i am instantiating the COM class object from the interop dll
So, few times the object is instantiated successfully and make remote procedure calls without any problem but ...
0
votes
0answers
52 views
Unhandled exception at 0x75619617 (KernelBase.dll) in iexplore.exe
I'm making a firebreath based plugin which adds two integers.
I'm debugging the plugin by attaching the source to the browser. I'm getting the above exception at this step of my PLUGINAPI.cpp
I have ...
0
votes
2answers
21 views
Handle access violations in COM interop
My managed app is using COM interop. Unfortunately there is a bug in the COM component that causes access violation. When the bug is hit, the whole app crashes, the handler attached to ...
0
votes
0answers
12 views
ComException HRESULT error
I'm using VS2008 for my application, and my reports are in VS2005. I am using Office 2010, Adobe Reader X and Windows XP. All external users have the same configuration (or so they say.
So I have a ...
1
vote
1answer
21 views
ServiceStack + 3rd Party COM Inteop + Context disconnected exception
I'm getting Context Disconnected errors when testing my ServiceStack service. I assume it's due to failing race conditions between the GC for the COM object's response callback thread, my ServiceStack ...
-1
votes
1answer
45 views
Failed to cast result of Marshal.GetActiveObject for COM interop wrapper
I'm struggling to work out how to access a COM interface provided by a C++ application and use it from a C# .NET application.
I try to access my COM object (which is provided by a running process) ...
0
votes
0answers
21 views
What is the correct way to import IWinInetHttpInfo (COM) in .NET?
I am having great difficultly importing and using IWinInetHttpInfo (http://msdn.microsoft.com/en-us/library/ms774972(v=vs.85).aspx), a COM interface in .NET.
I am in the process of writing an ...
4
votes
2answers
115 views
Embed Interop Types in F#
Can we embed interop type in F# ?
First I dont see the option to do so in the references.
Second, if I embed the type in C#, it tells me to reference the interface and not the concrete class:
...
0
votes
0answers
50 views
Passing an IDispatch parameter from C#
I'm writing a C# COM dll that will be used by both Managed C# as well as Delphi and C++ programs and javascript. The COM dll includes a monitor part where the application registers a function that is ...
0
votes
1answer
29 views
COM Errors Visual Studio 2010
Recently I've been working on an external .exe to communicate with AutoCAD. Since it was an outside .EXE I had to work with the COM to get what I wanted. (Else I could've used the .NET API which is ...
0
votes
1answer
118 views
Register com interop dll in .net
I am working on a Installshield Project which have 4 .net com interop dlls.
I used command C:\Windows\Microsoft.NET\Framework\v4.0.30319\Regasm.exe /tlb myassembly.dll /codebase to register the ...
0
votes
1answer
87 views
VB.NET 64bit COM with c# referenced helper assembly class
have a VB.net 64 bit project to be referenced in Excel 64 bit. I have a c# helper class that is referenced by the VB.net project. I have all the projects signed and the VB.net project set for Make ...
-3
votes
1answer
93 views
Creating a C#.NET DLL From COM DLL [closed]
I've tried multiple ways of getting a DLL (from a VB6 DLL) that's compatible with my C#.NET application with no luck. Here's the problem. I've been given an assortment of VB6 files. I've included a ...
1
vote
2answers
85 views
Incorporating a COM DLL into C#
I'm having some problems incorporating a COM DLL into a C#.NET program. The DLL was given to me by a third party. It was done in VB6. Currently, this is the error I'm receiving.
...
0
votes
0answers
58 views
Out-of-proc COM Server Memory Leaks when client invoke CoCreateInstance and closed unexpected
I have Out-of-Proc, in reality, DllSurrogate COM-Server, written in C++, ATL, mentioned in my previous S.O. question. I am creating and/or connecting to singleton from COM-Server from many clients and ...
0
votes
0answers
62 views
Exporting Collection of Trends: Excel -> C#
I encountered a problem of working with Excel trends and transferring them. It's easy to work with usual things like formulas/values, because these things might be exported into csv file, but I can ...
0
votes
1answer
28 views
class binding error in .NET application
My application is a .NET application that invokes underlying interop COM Dlls which rely on registered DLLs. Very rarely, one of my application instances generates the following error:
Error: ...
2
votes
2answers
218 views
How to Consume COM Server (ATL, DLL Surrogate) in .NET C# WinService?
I have a DLL Com Server, actually used only by one old Delphi exe-application.
COM Server is written many years ago (not by me) in C++ ATL. It implements callbacks (event - is it the same?) - using ...
0
votes
1answer
52 views
Decimal marshaling in COM-Interop
I have COM object method with signature
HRESULT _stdcall Method1([in] int ms);
Next, i call this method from C# by reflection:
...
decimal ms = 100.5m;
comType.InvokeMember("Method1", flags, ...
-2
votes
3answers
89 views
Convert C# string to Byte for COM Interop
I am calling a C++ COM component using interop and the marshalling requires one of the parameters to be passed in as ref Byte. The argument is actually a string. How do I convert a string (or a char ...
0
votes
0answers
48 views
TypeLoadException in .NET assembly with embedded Interop
I developed a .NET class library with the following characteristics:
.NET 4.0, Any CPU
References adodb.dll from the .NET Primary Interop Assembly folder
Builds with Embed Interop Type set to true ...
1
vote
1answer
55 views
How do I call a COM-function with a _variant_t parameter (type “long”)?
I want to port a certain function call to C#. The two lines are as follows:
m_pBrowserApp->get_Document(&pVoid);
m_pLayoutAnalyzer->Analyze4(pVoid, _variant_t(5L));
m_pBrowserApp ...
0
votes
0answers
56 views
COM object works in Win7 but not XP
This is frustrating me to no end. I have a OPOS program that reads RFID cards. I wrote 2 C# COM libraries. Both work in Windows 7 with no problems. One of them was rather difficult to get working, but ...
-2
votes
1answer
103 views
convert c++ code into c#
This is code snippet from c++
struct
{
short m_nVersion;
short m_nMOT_Addr;
q_address m_oDistribution_Q;
short m_nOffset;
char ...
3
votes
1answer
71 views
How can interop dll be easily updated?
Assume that we have a .NET project in VS 2005 (VB .Net).
This project uses non-GUI COM object. When I add the reference to this object, VS creates interop dll. But I add new methods to COM object in ...
1
vote
3answers
133 views
How can I pass a collection of objects from VB6 to .NET?
I need to pass a collection of key/value pairs of strings from VB6 to .NET. In VB6 code they exist in a native collection. But I am not sure what I can reference in my .NET project to be able to ...
0
votes
0answers
52 views
Image.FromHBitmap for IPictureDisp to Bitmap in .net fails under Scheduled Task
I am converting a IPictureDisp to a Bitmap in a console app. It works beautifully when I run it on the server directly but when I run it from a scheduled task it fails with the error parameter not ...
2
votes
1answer
98 views
Instantiating a COM Component fails with “Class not registered” when “Run As Administrator”
When instantiating a COM Interop object:
var comObj = new ComComponentClass();
I get the COMException:
Retrieving the COM class factory for component with CLSID
...
0
votes
1answer
101 views
How to overcome Error#2146233079: Automation error?
We have a .NET 3.5 component consumed by VB component through COM+ service. We are following the below steps to register the dll and
Executed Regasm.exe /tlb and Regasm.exe /tlb /codebase for the ...
1
vote
1answer
42 views
Is Office.Interop backward compatible?
Does referencing Office.Interop 14.0 allow me to automate Office 2003, 2007, and 2010?
I asked because I am unable to reference multiple directives for different Interop version (and I can no ...
1
vote
1answer
125 views
Cannot get registration-free COM working from VBA
UPDATE: After spending 20+ hours trying to get a simple example working, I have realized that this is not as simple as it seems. Articles like this reveal the "gotchas" - and this was written before ...
4
votes
1answer
139 views
Pass string from unmanaged code to managed
I have a problems with passing string from unmanaged code to managed.
In my unmanaged class (unmanagedClass.cpp) I have a pointer to function from managed code:
TESTCALLBACK_FUNCTION testCbFunc;
...
1
vote
1answer
57 views
new method declaration in derived interface
I lately studied some code and encountered a derived interface that declares new method with exactly the same name and signature as a base interface:
public interface IBase
{
Result ...
3
votes
0answers
110 views
Impersonation/Delegation with SourceSafe Interop
I'd like to open a source safe database using Interop.SourceSafeTypeLib 5.2.0.0 on SourceSafe 8.
This should happen in a server service running under 'network service' account. The server service ...
0
votes
1answer
55 views
Is it possible to use the same RTDServer in multiple excel instances
I have a C# RTDServer that works well in one instance of excel. It is defined as follows:
[Guid("1D50EF28-A1BE-4BE9-9214-46A48085ADFF")]
[ProgId("Acme.RtdServer")]
public class RTDServer : IRtdServer
...
0
votes
1answer
182 views
How to pass an array from C# to unmanaged COM by reference (VT_BYREF)
I have a COM component written in C++ whose source I can't change, and one of the arguments to one of its methods is VARIANT *pParamArray. Using tlbimp I can create a managed stub for it and pass it ...
0
votes
0answers
51 views
Windows Fax service retries exceeded but fax was sent
I've developed a client application using VB .NET 2010 that uses the Windows Fax service through interop.faxcomexlib to send faxes. For the majority of the time it works. But, too frequently the ...
0
votes
1answer
71 views
How to access underlying COM object of a managed .NET object created using TLBIMP
I have a number of COM libraries which I need to access from a WF4 activity, so I used tlbimp to generate managed wrappers for them. This works fine, but in a couple of cases there is a COM method ...
0
votes
1answer
155 views
outlook download email body
I am creating a program that sends a text message and then depending on the reply I want to perform a specific action. Anyways here is my code:
using Microsoft.Office.Interop.Outlook;
using Outlook = ...
0
votes
0answers
24 views
Interop: Using COM control in unmanaged codes
I’ve got a COM control being developed in C# and have trouble using it in my Visual C++ 6 application. I thought I would need a handle of the control and assign it to my form, but not sure if I’m ...
2
votes
1answer
369 views
Display DWG/DXF file in WPF application
I'd like to display an AutoCAD file (more importantly DWG) on a WPF application... I'd like some pointers on how this can be best done. I've looked around quite a bit, and there are a number of ...
0
votes
1answer
42 views
Convert .net user control to COM component
I have a working .net winform user control and would like to convert it to COM. I've been struggling finding a way to convert this user control to be COM enabled (for use in VS6/C++6). I'm not sure if ...
0
votes
1answer
34 views
Problems with INetFwMgr on Windows Server 2012
Using the following code works on every OS I've tested except for my Windows Server 2012 machine:
public static Type FwMgrType = Type.GetTypeFromProgID("HNetCfg.FwMgr");
public static void Main()
{
...
0
votes
1answer
42 views
Caching Third Party COM Object with ASP.NET Cache
What is the best way to get more performance out of third party COM component? We have a bottleneck issue with it we can't see to figure out a good solution for. The company no longer supports the API ...
3
votes
1answer
30 views
Why does this semantically equivalent (as far as i can see) vbscript code fail
I want to create a FormatString function for VBScript that works the same as String.Format in .Net.
I found i can use the System.Text.StringBuilder object in VBScript and tested the following code ...
-1
votes
1answer
216 views
How to insert a row and format a row of Excel in c# [closed]
I created an excel file using Microsoft.Office.interop. Now i want to add headings for all columns in that excel file. Also want to bold, color the heading row.
I have something like this:
using ...
0
votes
2answers
32 views
Can I move COM classes between assemblies?
I have an assembly that exposes an interface and a class to COM via ComVisible. This class is consumed by a VB6 application.
Now, due to some reorganization, I want this class to be provided by a ...
9
votes
1answer
162 views
How does Visual Studio's debugger/interactive window dump the properties of COM Objects in .NET?
In this related question, I noted that Visual Studio's debugger is able to enumerate the properties of System.__ComObject references, which is "a hidden type used when the wrapper type is ambiguous" ...
0
votes
0answers
20 views
For COM interop, is it possible to make the COM registration-free at both compile time and run time?
My understanding so far is for COM interop, if I reference generated Interop.*.dll, it is compile time reg-free but at run time it requires registered COM components. In order to generate run time ...




