3
votes
3answers
346 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 t …
2
votes
3answers
265 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 p …
2
votes
5answers
1k 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 or …
2
votes
4answers
2k 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 …
1
vote
1answer
348 views
How to find the IWebBrowser2 pointer for an IE8 window given a PID?
Hi,
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::IWebBrowse …
1
vote
1answer
99 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 …
0
votes
1answer
16 views
Enumerating all IDispatch implementing objects on a machine.
Hi there,
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 li …
0
votes
1answer
42 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 …
0
votes
2answers
119 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, a …
0
votes
1answer
125 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. …
0
votes
0answers
116 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 b …
0
votes
4answers
179 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 …
0
votes
0answers
59 views
Communicating with ActiveX with a GCC compiler
How do I reference and communciate with an ActiveX library from within my gcc compiled application?
0
votes
2answers
266 views
MSHTML IWebBrowser2 problem - Sinking page events causes missed keystrokes??
Hi all, 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 s …
0
votes
3answers
241 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 w …
