求Pb中messagebox()的五个参数,和参数的作用
答案:3 悬赏:40 手机版
解决时间 2021-01-17 10:08
- 提问者网友:夢醒日落
- 2021-01-16 14:38
求Pb中messagebox()的五个参数,和参数的作用
最佳答案
- 五星知识达人网友:低血压的长颈鹿
- 2021-01-16 15:55
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!“终止”、“重试”、“忽略”按钮
功能显示一个消息对话框。
语法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!“终止”、“重试”、“忽略”按钮
全部回答
- 1楼网友:夜余生
- 2021-01-16 17:25
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")
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")
- 2楼网友:街头电车
- 2021-01-16 16:13
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追问参数的作用是哪一段啊
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追问参数的作用是哪一段啊
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯