当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript InputBox 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript InputBox 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 173 ::
收藏到网摘: n/a

The InputBox function displays a dialog box, where the user can write some input and/or click on a button. If the user clicks the OK button or presses ENTER on the keyboard, the InputBox function will return the text in the text box. If the user clicks on the Cancel button, the function will return an empty string ("").
InputBox 函数可在对话框中显示提示,等待用户输入文本或单击按钮,并返回文本框内容。

Note: A Help button is added to the dialog box when both the helpfile and the context parameter are specified.
注意:如果同时提供了 helpfile 和 context,就会在对话框中自动添加“帮助”按钮。

Tip: Also look at the MsgBox function.
提示:还可以参考下MegBox函数

语法

InputBox(prompt[,title][,default][,xpos][,ypos][,helpfile,context])

参数 描述
prompt Required. The message to show in the dialog 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)) 以分隔各行。
title Optional. The title of the dialog box. Default is the application name
可选项。显示在对话框标题栏中的字符串表达式。如果省略 title,则应用程序的名称将显示在标题栏中。
default Optional. A default text in the text box
可选项。显示在文本框中的字符串表达式,在没有其它输入时作为默认的响应值。如果省略 default,则文本框为空。
xpos Optional. The horizontal distance of the left edge of the dialog box from the left edge of the screen. If omitted, the dialog box is horizontally centered
可选项。数值表达式,用于指定对话框的左边缘与屏幕左边缘的水平距离(单位为缇)。如果省略 xpos,则对话框会在水平方向居中。
ypos Optional. The vertical distance of the upper edge of the dialog box from the top of the screen. If omitted, the dialog box is vertically positioned one-third of the way down the screen
可选项。数值表达式,用于指定对话框的上边缘与屏幕上边缘的垂直距离(单位为缇)。如果省略 ypos,则对话框显示在屏幕垂直方向距下边缘大约三分之一处。
helpfile Optional. The name of a Help file to use. Must be used with the context parameter
可选项。字符串表达式,用于标识为对话框提供上下文相关帮助的帮助文件。如果已提供 helpfile,则必须提供 context。
context Optional. The Help context number to the Help topic. Must be used with the helpfile parameter
可选项。数值表达式,用于标识由帮助文件的作者指定给某个帮助主题的上下文编号。如果已提供 context,则必须提供 helpfile。

实例 1

dim fname
fname=InputBox("Enter your name:")
MsgBox("Your name is " & fname)

评论 (0) All

登陆 | 还没注册?