Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
8k views

Does C# .NET support IDispatch late binding?

The Question My question is: Does C# nativly support late-binding IDispatch? Pretend i'm trying to automate Office, while being compatible with whatever version the customer has installed. In ...
5
votes
3answers
2k views

How to use IDispatch in plain C to call a COM object

I need to compile some code of mine using the gcc compiler included in the R tools (R the statistical program for windows), the problem is that I need to use IDispatch in my code to create an access ...
4
votes
3answers
929 views

COM / OLE / ActiveX / IDispatch confusion

I can't wrap my head around the differences among these terms. Are COM and ActiveX synonyms? Is ActiveX object just a COM object that exposes IDispatch? Lots of older MSDN pages mention ...
3
votes
1answer
85 views

TEventObject and WebBrowser

I created a TEventObject to provide OnMouseDown and OnMouseMove events for TWebBrowser. The events work perfectly when moving the mouse and when clicking in the webbrowser, but when I scroll or click ...
3
votes
1answer
156 views

Implementing IDispatch in c#

I'm writing some test code to emulate unmanaged code calling my c# implementation of a late binding COM object. I have an interface that is declared as an IDispatch type as below. ...
3
votes
1answer
80 views

Invoke call on released COM object

I create a COM object used for automation tasks of some application. When this happens application is started and its' main window is displayed. The problem happens when user closes the main ...
3
votes
1answer
187 views

How does CreateStdDispatch know what method to invoke?

i'm faced with implementing an IDispatch interface. There are four methods, and fortunately 3 of them are easy: function TIEEventsSink.GetTypeInfoCount(...): HResult; { Result := E_NOTIMPL; } ...
3
votes
1answer
119 views

How to create anonymous IDispatch functions with ATL?

Is there an easy way to create a class that is derived from IDispatch and that can be passed to API like this (this is C++ ): pDOM2->attachEvent(CComBSTR("event"), new DispatchFunction); I know ...
3
votes
1answer
286 views

How to get a IHTMLElement pointer to the <object> tag hosting an activex control

I have an ActiveX control generated by the FireBreath framework (http://firebreath.org). I need to get a reference to the <object> tag in the page that hosts the plugin from C++. If I were ...
3
votes
3answers
341 views

COM Dual Interfaces

A dual interface in COM is one that is able to be accessed via a DispInterface or via VTable methods. Now can someone tell me what is exactly what the difference is between the two methods? I ...
2
votes
1answer
270 views

Access violation casting IDispatch in XE2

We're using some old code (ComLib.pas created by Binh Ly) so we can use the enumeration interface on an (OleVariant) object: type TDispNewEnum = dispinterface ...
2
votes
1answer
135 views

Why are all references to my IDispatch object not released?

I'm hosting an IWebBrowser2 control in my C++ program using nothing but plain Win32 (no mfc, atl, wtl etc). On DISPID_NAVIGATECOMPLETE2 I add a custom object to be accessed from javascript running on ...
2
votes
1answer
411 views

List of IDispatch errors and/or message texts

I am calling methods on WMI/WBEM interfaces that return HRESULTS. I want to display meaningful error messages for these error codes to the user. However, when I look up the HRESULT's error message I ...
2
votes
4answers
427 views

Getting an access to Idispatch member of idispatch interface

I am a physicist. I am trying to work on Delphi with an imported activex control (ocx file). Let’s say there are 3 automation interfaces in the library: IGraph, IGraphAxes and IAxis. The structure of ...
2
votes
2answers
96 views

patching approach for asp.net site

I'm working on a new project that is in .net 3.5. Currently the client is using stored procs and we would really like to use LINQ to SQL instead. The main reason they use stored procs is because they ...
2
votes
2answers
297 views

warnings about mystery interfaces in C# projects

Every time I build my C# Solution, I get a handful of warnings about interfaces that I've never seen or written. I tried Googling for some of them, but get no hits. Could these possibly be buried in ...
2
votes
4answers
288 views

What are my options for C++ DLL to call a C# DLL?

I have a C++ DLL that needs to call a function (pass a value, return a value) in a C# class library. Is my only option to give the C# DLL a COM interface and call it from C++ with IDispatch? Is this ...
2
votes
5answers
4k views

.NET2.0 C# Interop: How to call COM code from C#?

In my last development environment, I was able to easily interact with COM, calling methods on COM objects. Here is the original code, translated into C# style code (to mask the original language): ...
1
vote
2answers
44 views

Why I am getting same __vfptr for 2 different instances?

I got confused with __vfptr which I see through IDispatch/IUnknown pointers. I'm creating in-proc free threaded COM obj (IMyContainer). Inside this object I need to keep pointers to 2 different ...
1
vote
1answer
213 views

Retrieve javascript array object with C++ using DISPID_NEWENUM fails on IE9

following a similar question i answered some time ago, i found out that when trying to enumerate the object, using IDispatch::Invoke(DISPID_NEWENUM,...) fails with DISP_E_EXCEPTION on IE9. This ...
1
vote
0answers
117 views

Visual Studio IDE Crash Using IDispatch.GetTypeInfo() for Excel.Application

I am writing an application to interface with COM components and I have run into a problem when working with the Excel.Application component while running my application in the Visual Studio 10 IDE. I ...
1
vote
1answer
148 views

passing a struct to a IDispatch method

In a third party COM Module I have to pass a struct to a Method. The important parts of the IDL definition look like this: interface ITheirInterface : IDispatch { [id(0x0000012d)] HRESULT ...
1
vote
4answers
467 views

Providing an IDispatch implementation for a connection point client

I've written a simple COM DLL inproc server with a single simple COM object. The COM object implements a connection point. I know how to create an ATL client that derives from IDispEventImpl, and ...
1
vote
1answer
415 views

Packaging IDispatch Invoke with Parameters in C# (with DISPPARAMS)

I'm using Invoke for late binding on a legacy COM objects that supports IDispatch. This seems necessary as .NET's Type.GetMethod Type.InvokeMember do not seem to work on these objects. The following ...
1
vote
1answer
286 views

Esoteric JScript hosting problem: where is the error code when IDispatch::Invoke returns SCRIPT_E_PROPAGATE?

Our application hosts the Windows Scripting Host JScript engine and exposes several domain objects that can be called from script code. One of the domain objects is a COM component that implements ...
1
vote
2answers
604 views

Hook IDispatch v-table in C++

I'm trying to modify the behavior of an IDispatch interface already present in the system. To do this my plan was to hook into the objects v-table during runtime and modify the pointers so it points ...
1
vote
2answers
2k views

How to find the IWebBrowser2 pointer for an IE8 window given a PID?

so far, I've successfully used the following function to retrieve the IWebBrowser2 pointer to a running Internet Explorer instance, given it's PID. static SHDocVw::IWebBrowser2Ptr findBrowserByPID( ...
1
vote
1answer
742 views

NonComVisibleBaseClass was detected; How do I fix this?

My class derives from System.Web.Security.MembershipUser I am getting this error when submitting the form. The popup form uses ASPPDFand the application did not have this problem before implementing ...
1
vote
1answer
371 views

Communicating with ActiveX with a GCC compiler

How do I reference and communciate with an ActiveX library from within my gcc compiled application?
1
vote
1answer
206 views

How to detect PowerPoint 2007 from a C++ addin?

I need to detect if my addin is in PowerPoint 2007 via my C++ addin. The PowerPoint object model exposes Application.Version, which should work, but I do not know enough about how to use this with ...
1
vote
3answers
644 views

Registration Free (Regfree) COM

We are using a COM Object automation model to make our application available to our customers. They are using for the most part python to access our applicaton interface. As we want to be able to ...
0
votes
2answers
56 views

OLE automation with C++: receiving empty variant from Invoke() instead of valid result

In C++, I'm trying to call an OLE method which looks like this: HRESULT GetFirstMono( [out] BSTR* name, [out, retval] BSTR* monoID); I use the following code to call it (adapted from ...
0
votes
0answers
161 views

CWnd as ActiveX control without .dll or .ocx file in C++?

Dear MFC/ActiveX/COM cracks, I have 'inherited' the source of an old MFC application (originally created with Visual Studio 6) which builds and runs so far in VS 2010, but has embedded some ActiveX ...
0
votes
1answer
79 views

C++ DispInvoke fails to find member

The scenario is this: I have a COM object to ask questions. Name it ICom. The COM object requires me to implement an IDispatch , descendant of , say, IComEvents, that notifies me for events. I ...
0
votes
1answer
100 views

Need to duplicate an IDispatch* with .NET backing; don't know class name

I'm hosting a .NET library in my C++ program using the following methods, though not an exhaustive list: CorBindToRuntimeEx() GetDefaultDomain() CreateInstance() Invoke() I have C++ classes which ...
0
votes
1answer
157 views

How can you get a prototype member function (C++ -> Javascript)

Does anyone know how you can call a method of a prototype in Javascript from C++? I have an pointer to script IDispatch, and I can get the IDsOfNames for the prototype, but I can't find how to get ...
0
votes
2answers
105 views

How to send an event callback parameter to a COM object with .net

I have a referenced a COM dll. Some methods expect a callback parameter. I checked the interop.MyComLib.dll in reflector: public virtual extern void Foo([In, MarshalAs(UnmanagedType.IDispatch)] ...
0
votes
1answer
292 views

IE attachEvent on object tag causes memory corruption

I've an ActiveX Control within an embedded IE7/8 HTML page that has the following event [id(1)] HRESULT MessageReceived([in] BSTR id, [in] BSTR json). On Windows the event is registered with ...
0
votes
1answer
115 views

Enumerating all IDispatch implementing objects on a machine

I'd like to enumerate all IDispatch supporting objects on a machine. At the moment I need to know what the class id or prog id is but, for inspecting my machine, I'd like to know if I can just ...
0
votes
2answers
150 views

IDispatch object that responds to all properties?

I want to create an IDispatch object that returns a value for every property. Ask it for "foo", it returns something. "bar" returns something. "faid1jhgi31jifj" as well. Any pointers?
0
votes
2answers
298 views

Does a “pure” IDispatch interface require a proxy/stub DLL?

..for an out-of-process-server, or can I call a dispatch interface without registering a proxy/stub? The interface in question is very high level, so performance is a non-issue, and I could make the ...
0
votes
1answer
595 views

Can I get proper IDispatch from DISPPARAMS?

I want to get a proper IDispatch pointer then cast it to CMyDispatch pointer and have my way with it later. i.e. in javascript I want to do something like this: var x = external.obj.x; var y = ...
0
votes
2answers
969 views

MSHTML IWebBrowser2 problem - Sinking page events causes missed keystrokes?

I've got a bit of a problem with my application using MSHTML. I have everything working except for the odd keystroke missing behavior when typing fast as mentioned in the subject line. I think it may ...
0
votes
2answers
256 views

How to get the running version of Power Point using C++ unmanaged?

I am using C++ unmanaged with Power Point (2003 and 2007). How do I get the running version of Power Point (2003 or 2007) with IDispatch? Thanks, any help would be awesome.
0
votes
2answers
443 views

How do I do ConnectionPoint in Delphi?

I'm writing a DLL which talks to Excel via its IDispatch interface. From VBA I pass in a Variant containing Application.Caller from which I draw the IDispatch pointer via .pDispVal. What I'd like to ...
0
votes
3answers
1k views

How do I write a DLL for Excel in Delphi?

I'm using Turbo Delphi 2006. The DLL will be called from within Excel as part of a VBA/DLL combination. The first part of the problem is trying to find out how to pass to the DLL a reference to the ...