What is the difference between VB and VBScript

后端 未结 6 2157
自闭症患者
自闭症患者 2020-12-15 16:18

What is the difference between VB and VBScript?

6条回答
  •  别那么骄傲
    2020-12-15 16:30

    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.

提交回复
热议问题