Hi.
I'm developing an application in VB6. In that application, we're using the WebBrowser control based on Internet Explorer. That WebBrowser control loads a local web page containing an ActiveX object.
Now, when i send parameters to the object using the <param> tag, or when i call the ActiveX object using javascript (as described below) i get a security question from Internet Explorer asking me if i want to allow interaction between the ActiveX control and the rest of the web page even though it might be a security risk.
I want to get rid of that security question. How can that be done?
Our application will be installed on our customers computers, hence we have access to the registry and such. Can it maybe be solved by installing certificates and signing the control?HTML Code:<object id="myActiveXControl" classid="[...]" codebase="[...]"> <param name="[...]" value="[...]"> myControl </object> <script> document.getElementById('myActiveXControl').someFunction("Value"); </script>
Thanks!




Reply With Quote