vote up 1 vote down star

Is it possible to use both JScript and VBScript in the same HTA? Can I call VBScript functions from JScript and vice-versa? Are there any "gotchas," like the JScript running first and the VBScript running second (classic ASP pages have this issue).

flag

1 Answer

vote up 2 vote down check

Yeah, just separate them into different script tags:

<script language="javascript">
   // javascript code
</script>

<script language="vbscript">
   ' vbscript code
</script>

Edit: And, yeah, you can cross call between Javascript and VBScript with no extra work.

link|flag
+1 -since i'm not sure why the OP didn't up vote after your answer was selected – Faisal Vali Jun 27 at 3:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.