VBScript 是流行的 Microsoft Visual Basic 的轻量级脚本版本,顾名思义,由 Microsoft 开发。它用于开发动态网页。与 Visual Basic 编程语言相比,它要轻得多,但可以像 JavaScript 一样作为脚本语言使用。要在客户端运行 VBScript,客户端必须使用 Internet Explorer,因为 VBScript 仍然不支持其他浏览器。
如何制作VBScript程序?
就像许多其他简单的脚本语言一样,VBScript 可以在一个简单的文字编辑器上编写,例如记事本和其他此类软件(例如记事本++、写字板等)。请参考以下步骤以更好地了解制作 VBScript 程序:
步骤 1:打开您选择的文字编辑器(此处使用记事本)。
第 2 步:现在,这里是一个简单的 VBScript 程序,它将在屏幕上显示一个简单的消息对话框。 VBScript 中此类程序的代码是:
a = msgbox("Have a good day, fellow GFG reader!", 0, "Making a VBScript program")
代码说明:只要符合VBScript中的变量声明规则就可以放任何东西,而不是上面代码开头的“a”。有效地,我们可以通过以下方式破解和理解上述代码:
put_any_Variable_name = msgbox("Your main text here", 0, "Your title text here")
要根据需要更改对话框的属性,请参阅以下数据:
Code | Property |
---|---|
0 | Only “OK” button will be displayed. ???? |
1 | OK and Cancel buttons will be displayed. ???? ❌ |
2 | Abort, Retry, and Ignore buttons will be displayed. ???? ???? ???? |
3 | Yes, No, and Cancel buttons will be displayed. ✅❎❌ |
4 | Yes and No buttons will be displayed. ✅❎ |
5 | Retry and Cancel buttons will be displayed. ???? ❌ |
16 | Critical Message icon will be shown in the dialog box ???? |
32 | Warning Query icon will be shown in the dialog box ❓ |
48 | Warning Message icon will be shown in the dialog box ???? |
64 | Information Message icon will be shown in the dialog box ⏺ |
0 | First button will become default |
256 | Second button will become default |
512 | Third button will become default |
768 | Fourth button will become default |
0 | Triggers the application modal (basically, the current application will stop working until the user responds to the dialog box) |
4096 | Triggers the System modal (basically, all applications will stop working until the user responds to the dialog box) |
将上面编写的代码中的“0”更改为上面提供的任何数字。
要在对话框中获得多个上述属性,您可以简单地编写,例如:“0+16”,而不是上面代码中的“0”。
供参考,代码:
hydro = msgbox("Remember to drink water!", 0+64, "Hydration Check")
将给出以下输出:
就是这样,我们刚刚编写了一个基本的 VBScript 程序,它将显示一个对话框作为输出。现在开始保存这个程序。
如何保存 VBScript 程序?
按照以下步骤保存 VBScript 程序:
步骤1:按键盘上的Ctrl + Shift + S ,或在记事本窗口中单击文件>另存为,这将打开一个另存为对话框窗口,询问将当前记事本文档保存在哪里。
第 2 步:现在为该记事本文档编写您选择的任何文件名,但请确保将 .vbs 作为其扩展名。确保在“文件名:”字段中写入文件名后添加“.vbs”。
第 3 步:现在,通过在下拉菜单的帮助下单击,将“Save as type:”字段的值从“Text Documents (*.txt)”更改为“All Files (*.*)”。
第 4 步:最后,在选择文件应保存到的适当位置后单击保存。
如何运行 VBScript 程序?
现在,这是一件非常简单的事情,只需从您保存的任何位置双击现在保存的 .vbs 文件,瞧!它将运行并为您提供以下输出: