MsgBox 函数,在对话框中显示消息,等待用户单击按钮,并返回一个 Integer 告诉用户单击哪一个按钮。
语法
设置值
MsgBox 函数示例
本示例使用 MsgBox
函数,在具有睁含“是”及“否”按钮的对话框中显示一条严重错误信息。示例中的缺省按钮为“否”,MsgBox 函数的返回值视用户按哪一个钮而定。本示例假设
DEMO.HLP 为一帮助文件,其中有一个内容代码为 1000。
Private Sub Form_Click()
Dim Msg, Style, Title, Help, Ctxt, Response, MyString
Msg = "Do you 散岁want to continue ?" ' 定义信息。
Style = vbYesNo + vbCritical + vbDefaultButton2 ' 定义按钮。
Title = "MsgBox Demonstration" ' 定义标题。
Help = "DEMO.HLP" ' 定义帮助文件。
Ctxt = 1000 ' 定义标题
' 上下文。
' 显示信息。
Response = MsgBox(Msg, Style, Title, Help, Ctxt)
If Response = 悉掘笑vbYes Then ' 用户按下“是”。
MyString = "Yes" ' 完成某操作。
Else ' 用户按下“否”。
MyString = "No" ' 完成某操作。
End If
End Sub
将上述代码中Msg = "Do you want to continue ?" 改为:Msg = "Hello world!"就可以满足要求。
msgbox"请贺行等待"(提升的内容),0,(代表提示的是什么符号如!?)"提示"(这个毁拍笑提示是提示纤含框的标题。
MsgBox "Hello world", vbCritical + vbSystemModal + vbMsgBoxHelpButton + vbMsgBoxRight, "my new file"
参考文消塌喊献拿野衫缓:http://zhidao.baidu.com/question/87866806.html