Adding an Event to ActiveX control created from DLL
I need to know how to add an Event to an ActiveX control I imported from a type library (DLL). As I received it, the control works fine but only fires a few Drag Events, OnEnter and OnExit. Before posting here I searched on the forums, but all the answers I could find assume I am creating an ActiveX control or Active Form from scratch, but I am using a DLL compiled in C++ that does not fire the events I want. I need to be able to track the mouse position inside this control. An example of how to add OnClick or Mousedown to such an ActiveX control would be very helpful.
Also any other workaround to track mouse position and clicks inside an ActiveX container would be sufficient.
If it doesn't fire the events you want, then you're out of luck. It's the C++ code that will have to shoot those events in the first place. If it doesn't, well... Tough!
To track the mouse events, you might use the OnMouseMove events of the control below the ActiveX control. If not, you'll have to install a mousehook message handler. Not a pretty solution, though.
0
whfolsom4Author Commented:
Thanks, I did end up installing a mousehook message handler in the form of TApplicationEvents component. Otherwise, it looks like the parent control receives no events when the mouse if over the ActiveX control.
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
To track the mouse events, you might use the OnMouseMove events of the control below the ActiveX control. If not, you'll have to install a mousehook message handler. Not a pretty solution, though.