vote up 0 vote down star

HI,

How can I convert javascript in to vbscript? I am making a script entriely using vbscript. But for some sections i got code in javascript.

flag
Converting Javascript to VBScript: it's illegal in my country ;-) – splattne Feb 20 at 12:26
I hope the OP is aware that VBScript is IE specific. – Cerebrus Feb 20 at 12:42
@cerebrus: JScript and VBScript have had their uses outside of the browser notably ASP scripting and Admin scripting – AnthonyWJones Feb 20 at 12:48
I guess my question would be why? If it is being done as an intellectual exercise, that is fine, but if there is some underlying reason, perhaps more information would let us help you fix that then no conversion id needed. – EBGreen Feb 20 at 13:21
Whoa. What? I had to read the title twice to be sure the OP was really asking that. @vljay - you're doing it wrong. Iceberg straight ahead! – annakata Feb 20 at 15:03

6 Answers

vote up 0 vote down

The only thing I found is this comparison chart of a VBScript to Javascript converter:

http://slingfive.com/pages/code/scriptConverter/construct_map.html

link|flag
vote up 1 vote down

It would depend on the complexity of the Javascript. Javascript is capable of expressing things impossible to achieve as simply in VBScript.

Even assuming the Javascript is a relative straight forward set of functions its still a manual job.

link|flag
vote up 4 vote down

If this is for a Windows Scripting Host script (one that you will run via cscript or wscript) you can make your main VBScript file a WSF file, then include the JavaScript file and use its classes and functions within your VBScript; there would be no need to convert it.

See MSDN: Using Windows Script Files (.wsf) for more info.

link|flag
vote up 0 vote down

Dim vbInformation, vbOkOnly

vbInformation = 64

vbOkOnly = 0

MsgBox "VBScript can also do things that JavaScript can't.", vbInformation+vbOkOnly, "Stack Overflow Answers"


MsgBox Function (Visual Basic) http://msdn.microsoft.com/en-us/library/139z2azd.aspx

link|flag
vote up 1 vote down

You can convert VB to JS but JS to VB.. that's just crazy talk. PS, if anyone can do this, I have a stash of scrap metal that I've been trying to turn into gold for about 4 years now.

link|flag
vote up 0 vote down

http://slingfive.com/pages/code/scriptConverter/demo.html this one doesnt work for me...

link|flag

Your Answer

Get an OpenID
or

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