Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
385 views

Create a new connection point in VC++ 6?

I have an ATL/COM project, in VC++ 6. I want an existing class, that has never before been defined to raise events, to raise events. To do this, the class will have to implement a "connection ...
1
vote
1answer
139 views

Why doesn't IE listen to ActiveX events?

I put ActiveX control onto HTML page with longrun method that should fire events to be processed by IE. They don't fire because m_vec.GetSize() == 0, it means IE doesn't connect to my ActiveX. Site ...
1
vote
6answers
1k views

Unable to get ATL Connection Points working

I am trying to create a COM component using ATL, and I'd like to raise events for my VB client. I've found numerous tutorials, all of which seem to vary in details, and none of them appear to generate ...
1
vote
4answers
665 views

How to check if a container supports multiple connections?

Implemented the Sink Class - to receive event notifications from COM Server Event Interface derives from IDispatch I have an issue whereby an IConnectionPoint::Advise call returns E_NOTIMPL. This ...
0
votes
1answer
63 views

regenerating connection point methods

I've created a connection point interface _IPlayerEvents. I've added a couple of methods OnConnect() OnDisconnect() I've built the project, and VS2008 has generated code in the ...
0
votes
1answer
313 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
2answers
174 views

event notifications not received as described

Problem: Event notifications (From COM object - Server) are not received as listed in the Sink (class) implementation. One event notification is received (Event_one), however, others are not ...