Tagged Questions
The iconnectionpoint tag has no wiki summary.
2
votes
1answer
118 views
E_ACCESSDENIED exception when attaching to an event in a COM server from .NET
I have a C++/ATL COM server that implements IConnectionPoint events. My client is a C# application that attaches to the events. When the COM server is created as a SYSTEM service, the client can ...
1
vote
1answer
335 views
What is IconnectionPoint and EventHandling
Trying to understand What is IConnectionPoint and how this is connected to IConnectionPointContainer,IEnumConnectionPoints,IEnumConnections and EventHandling.
Read the artcicles from MSDN and ...
1
vote
5answers
3k views
Connect to COM events in C# - support both managed and unmanaged servers
I'm writing C# code that needs to connect to COM events. I implemented the use of
IConnectionPointContainer and IConnectionPoint thus:
IConnectionPointContainer connectionPointContainer = ...
0
votes
2answers
313 views
Setting a WPF button to visible within an IConnectionPoint event handler
I'm fairly new to C# and WPF programing and right now this problem is giving me headaches.
What the program should do: The program displays a welcome screen with a text box, where a customer can ...
0
votes
1answer
193 views
InvalidCastException when setting up handler for COM event
I have an unmanaged C++ COM server that is setup to fire events, and i am trying to handle these events from my C# app.
However, I get an InvalidCastException when setting up the handler
...
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 ...
-1
votes
2answers
183 views
Automation object leaks memory (TConnectionPoints)
I have an automation object with event support that leaks memory. The FConnectionPoints which comes with the generated source is never freed. When I manually add FConnectionPoints.Free in the ...