vote up 2 vote down star

I have been given a task to convert code that is written in JavaScript over to VBScript. It is actually quite basic code and it is really just the syntax that needs to be converted.

For example

 if (str == "string text") {
   foo = "foo";
} else {
   foo2 = "foo2";
}

becomes

 If (str = "string text") Then
   foo = "foo"
Else
   foo2 = "foo2"
End If

I was wondering if a tool existed to convert from JavaScript to VBScript?

flag

38% accept rate
can i be the first one to say: why on god's good earth would you want to convert TO vbscript??? – nickf Oct 21 '08 at 7:18
heh, i know it's a strange situation, but basically due to legacy support – Mrgreen Oct 21 '08 at 13:01
can i be the second one to say: why on god's good earth would you want to convert TO vbscript??? ;-) – Dscoduc Feb 7 at 16:03

2 Answers

vote up 0 vote down

For basic code you can actually use a C# to VB converter, like CodeChanger, but remember, it will work only for very basic code like your example...

link|flag

Your Answer

Get an OpenID
or

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