I have a .NET UserControl that I am exposing through COM so that it can be used in a local web page. This .NET control also displays an ActiveX Control, which I'm exposing to Javascript as a property using the following code:
Public ReadOnly Property SubControl() As Object
Get
SubControl = AxControl
End Get
End Property
This works fine for exposing all the methods and properties of the ActiveX control to Javascript, but I can't get sink any of the control's events. If the ActiveX control were hosted directly on the page, I could sink the events using the following javascript:
function AxControl::EventName() { /* Do something with the event */ }
Since I'm exposing the control through another control, I thought the following would work:
function AxControl.SubControl::EventName() { /* Doesn't work :( */ }
I know I can create public events that I raise from the ActiveX Control's handlers inside VB.net, but using this method I cannot cancel the original event, which is necessary for some of them.
Is there a way I can fully expose the hosted ActiveX Control, complete with event sinking/trapping?
