I have an ActiveX control generated by the FireBreath framework (http://firebreath.org). I need to get a reference to the tag in the page that hosts the plug
In C#:
public int SetSite(object site) { if (site != null) { var oleControl = (IOleControlSite)site; object oHtmlElement; oleControl.GetExtendedControl(out oHtmlElement); var htmlElement = (IHTMLElement2)oHtmlElement; ... } }