Hi,
I am looking for an example please on how to get an ActiveX's events to submit a form please ... in other words catch an event within a web page.
I have an ActiveX control I use in an HTML document.
<object
classid="clsid:E56666C6-4F59-11D5-9E0A-000102A3FE41"
ID="123" >
</object>
The control throws up an event which I would like to catch in the HTML with a
script (javascript, VBscript).
The event name is "Event" and has an argument which type is declared in
the activeX control. But this type I cannot seem to use.
I tried in Javascript but unfortunately it does not work:
<SCRIPT LANGUAGE="JavaScript" FOR="123" EVENT="Event(p)">
alert("nothing"
</script>
<SCRIPT LANGUAGE="JavaScript" FOR="123" EVENT="Event">
alert("nothing"
</script>
How can I catch an ActiveX event in HTML? Does Javascript, VBscript, ASP support this?
If you have any ideas or could refer me to a resource on the web I'd appreciate it.
Thanks in advance
I am looking for an example please on how to get an ActiveX's events to submit a form please ... in other words catch an event within a web page.
I have an ActiveX control I use in an HTML document.
<object
classid="clsid:E56666C6-4F59-11D5-9E0A-000102A3FE41"
ID="123" >
</object>
The control throws up an event which I would like to catch in the HTML with a
script (javascript, VBscript).
The event name is "Event" and has an argument which type is declared in
the activeX control. But this type I cannot seem to use.
I tried in Javascript but unfortunately it does not work:
<SCRIPT LANGUAGE="JavaScript" FOR="123" EVENT="Event(p)">
alert("nothing"
</script>
<SCRIPT LANGUAGE="JavaScript" FOR="123" EVENT="Event">
alert("nothing"
</script>
How can I catch an ActiveX event in HTML? Does Javascript, VBscript, ASP support this?
If you have any ideas or could refer me to a resource on the web I'd appreciate it.
Thanks in advance