Hi,

I have a problem with Internet Explorer 8 (both on Vista and Windows
7) and an AcitveX object.

Running the following plain javascript displays a test alert message
in the browser when loaded in Internet Explorer 8:

...
<script type="text/javascript">

        var myActiveXObject = new ActiveXObject("MyBHO.MyActiveX");
        myActiveXObject.myTestFunction();

</script>
...

But if I generate the "exact" same javascript via a GWT web
application as follows, nothing happens in Internet Explore 8:

...
private native void testMyActiveX () /*-{
        var myActiveXObject = new ActiveXObject("MyBHO.MyActiveX");
        myActiveXObject.myTestFunction();
}-*/;
...

However, running the GWT snippet above in Internet Explorer 7 works
perfectly fine.

Has anyone ran into a similar problems or has an idea about what goes
wrong here, when testing in Internet Explorer 8?

Cheers,
CB
-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to