求Pb中messagebox()的五个参数,和参数的作用

求Pb中messagebox()的五个参数,和参数的作用... 求Pb中messagebox()的五个参数,和参数的作用 展开
 我来答
for_get2007
推荐于2018-01-18 · TA获得超过510个赞
知道小有建树答主
回答量:112
采纳率:100%
帮助的人:181万
展开全部
MessageBox()
功能显示一个消息对话框。
语法MessageBox(title,text{,icon{,button{,default}}})
参数
title:string类型,指定消息对话框的标题
text:指定消息对话框中显示的消息,该参数可以是数值数据类型、字符串或boolean值
icon:Icon枚举类型,可选项,指定要在该对话框左侧显示的图标
button:Button枚举类型,可选项,指定显示在该对话框底部的按钮
default:数值型,可选项,指定作为缺省按钮的按钮编号,按钮编号自左向右依次计数,缺省值为1,如果该参数指定的编号超过了显示的按钮个数,那么MessageBox()函数将使用缺省值返回值Integer。
函数执行成功时返回用户选择的按钮编号(例如1、2、3等),发生错误时返回-1。如果任何参数的值为NULL,MessageBox()函数返回NULL。
用法当你的应用程序需要显示一段简短信息(比如显示出错、警告等信息)时,没有必要自己从头创建窗口、安排控件,使用MessageBox()函数既简单又方便。用户只有响应该窗口后,程序才能继续运行下去。
MessageBox()函数的icon参数指定显示在窗口中的图标,它是枚举类型,可能取值为: 取值 图标Information! StopSign! Exclamation! Question! None! 无图标,其中Information!是Icon参数的缺省值。
Button参数指定在窗口中显示哪些按钮,有效取值为:取值中文Windows 95下显示
OK!“确定”按钮
OKCancel!“确定”、“取消”按钮
YesNo!“是”、“否”按钮
YesNoCancel!“是”、“否”、“取消”按钮
RetryCancel!“重试”、“取消”按钮
AbortRetryIgnore!“终止”、“重试”、“忽略”按钮
百度网友266978193
推荐于2017-12-16 · TA获得超过270个赞
知道答主
回答量:235
采纳率:0%
帮助的人:174万
展开全部
MessageBox(title,text[,icon[,button[,default]]])
MessageBox ( '标题','内容',图标,按键,默认值)
其中标题与内容为要显示的字符串,不可省略
图标可选值: Information! 或 StopSign! 或 Exclamation! 或Question! 或 None!
按键可选值: OK! 或 OKCancel! 或 YesNo! 或 YesNoCancel! 或RetryCancel! 或 AbortRetryIgnore!
默认值为可选: 1 或 2 或 3

基本写法事例: MessageBox('提示信息','这是信息框!')
完整写法事例:
if MessageBox('提示信息','资料已修改是否保存?',&
Question! ,YesNo! , 1 ) = 1 then
MessageBox('提示信息', '你选择了保存资料')
else
MessageBox('提示信息','你选择了不保存资料')
end if
追问
参数的作用是哪一段啊
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帖放00T
2012-11-23 · 超过10用户采纳过TA的回答
知道答主
回答量:45
采纳率:0%
帮助的人:34.7万
展开全部
Syntax
  MessageBox ( title, text {, icon {, button {, default } } } )
  ArgumentDescription
  titleA string specifying the title of the message box, which appears in the box's title bar
  textThe text you want to display in the message box. The text can be a numeric data type, a string, or a boolean value
  icon
  (optional)A value of the Icon enumerated data type indicating the icon you want to display on the left side of the message box. Values are:?Information! (Default)?StopSign!?Exclamation!?Question!?None!
  button (optional)A value of the Button enumerated data type indicating the set of CommandButtons you want to display at the bottom of the message box. The buttons are numbered in the order listed in the enumerated data type. Values are:?OK! ?(Default) OK button?OKCancel! ?OK and Cancel buttons?YesNo! ?Yes and No buttons?YesNoCancel! ?Yes, No, and Cancel buttons?RetryCancel! ?Retry and Cancel buttons?AbortRetryIgnore! ?Abort, Retry, and Ignore buttons
  default (optional)The number of the button you want to be the default button. The default is 1. If you specify a number larger than the number of buttons displayed, MessageBox uses the default

Return value
  Integer. Returns the number of the selected button (1, 2, or 3) if it succeeds and -1 if an error occurs. If any argument's value is NULL, MessageBox returns NULL.

Examples

Examples
  This statement displays a MessageBox with the title Greeting, the text Hello User, the default icon (Information!), and the default button (the OK button):
  MessageBox("Greeting", "Hello User")
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式