in reply to Re^3: Reading from an ActiveX Object
in thread Reading from an ActiveX Object
There's a little more to it than that, but that's generally it. I guess the idea would be to open the same ActiveX object with a Perl Module that my browser is opening?function change(url) { document.getElementById('RESULT').innerHTML = '<br><br><br><br +><br><br><br><center><img src="img/loading.gif"></center>'; Initialize(); if(req != null) { req.onreadystatechange = Process; req.open("GET", url,true); req.send(null); }; } // ------------------------------ // Initialize(ajax) // ------------------------------ function Initialize() { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch(oc) { req = null; } } if(!req && typeof XMLHttpRequest != "undefined") { req = new XMLHttpRequest(); } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Reading from an ActiveX Object
by ChOas (Curate) on Jul 08, 2008 at 06:33 UTC | |
by GaijinPunch (Pilgrim) on Jul 08, 2008 at 06:58 UTC |