Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Calling VBScript procedure from Javascript??

0 views
Skip to first unread message

Herb

unread,
Aug 19, 2001, 3:22:22 AM8/19/01
to
Is it possible to call a VBScript procedure from Javascript?

If so how?


Herb (The Scribe) Hanko (604) 939-5150
he...@scribecom.com www.scribecom.com


Martin Honnen

unread,
Aug 19, 2001, 7:57:26 AM8/19/01
to
IE on Win supports both JScript and VBScript

<script type="text/vbscript">
sub praise
alert("Kibology")
end sub
</script>
<script type="text/jscript">
praise()
</script>


Be careful here, as the first used scripting language determines the
language for event handlers

--

Martin Honnen
http://javascript.faqts.com/
http://home.t-online.de/home/martin.honnen/jsgoddies.html


0 new messages