当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript MsgBox 函数
The MsgBox function displays a message box, waits for the user to click a button, and returns a value that indicates which button the user clicked.
MsgBox 函数可在对话框中显示消息,等待用户单击按钮,并返回一个值指示用户单击的按钮
The MsgBox function can return one of the following values:
MsgBox 函数有以下返回值:
Note: The user can press F1 to view the Help topic when both the helpfile and the context parameter are specified.
注意:如果同时提供了 helpfile 和 context,则用户可以按 F1 键以查看与上下文相对应的帮助主题。
Tip: Also look at the InputBox function.
提示:还可以参考下InputBox函数
MsgBox(prompt[,buttons][,title][,helpfile,context]) |
参数 | 描述 |
---|---|
prompt | Required. The message to show in the message box. Maximum length is 1024 characters. You can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or carriage return–linefeed character combination (Chr(13) & Chr(10)) between each line 必选项。作为消息显示在对话框中的字符串表达式。prompt 的最大长度大约是 1024 个字符,这取决于所使用的字符的宽度。如果 prompt 中包含多个行,则可在各行之间用回车符 (Chr(13))、换行符 (Chr(10)) 或回车换行符的组合 (Chr(13) & Chr(10)) 分隔各行。 |
buttons | Optional. A value or a sum of values that specifies the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. Default value is 0 可选项。数值表达式,是表示指定显示按钮的数目和类型、使用的图标样式,默认按钮的标识以及消息框样式的数值的总和。有关数值,请参阅“设置”部分。如果省略,则 buttons 的默认值为 0。
We can divide the buttons values into four groups: The first group (0–5) describes the buttons to be displayed in the message box, the second group (16, 32, 48, 64) describes the icon style, the third group (0, 256, 512, 768) indicates which button is the default; and the fourth group (0, 4096) determines the modality of the message box. When adding numbers to create a final value for the buttons parameter, use only one number from each group |
title | Optional. The title of the message box. Default is the application name 可选。显示在对话框标题栏中的字符串表达式。如果省略 title,则将应用程序的名称显示在标题栏中 |
helpfile | Optional. The name of a Help file to use. Must be used with the context parameter 可选。字符串表达式,用于标识为对话框提供上下文相关帮助的帮助文件。如果已提供 helpfile,则必须提供 context。在 16 位系统平台上不可用。 |
context | Optional. The Help context number to the Help topic. Must be used with the helpfile parameter 可选。数值表达式,用于标识由帮助文件的作者指定给某个帮助主题的上下文编号。如果已提供 context,则必须提供 helpfile。在 16 位系统平台上不可用。 |
dim answer |