vote up 0 vote down star

What is the difference between VB and VBScript?

flag

I'm stripping the Java/JavaScript bit out of your question, as it's irrelevant and duplicates an existing question. For the answer, see: stackoverflow.com/questions/245062/… – Shog9 Sep 5 at 19:15

3 Answers

vote up 4 vote down check

VB is a full-fledged programming language which can be used to create compiled applications, while VBScript is a sub-set of VB and is a scripting language that can be used to run a set of commands, similar to an old-school DOS batch file. Generally, a scripting language can not be used to create a full-fledged binary application and it can not be compiled down to a executable binary file.

link|flag
vote up 2 vote down

VBScript is a variety of VB, just as VB6, VBA, and VB.NET are. They're all different, some of them dramatically so.

link|flag
vote up 1 vote down

VBScript is a "lightweight" subset of Visual Basic with limited syntax that is used for scripting purposes (like routine task automation) rather than application development.

While Visual Basic code is compiled into binary executables, VBScript code is interpreted and runs within a host environment (e.g. Windows Script Host or Internet Explorer).

link|flag

Your Answer

Get an OpenID
or

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