如何弹出一个提示框,有确定,取消按钮,我记不起了(100分)

  • 主题发起人 主题发起人 fishmando
  • 开始时间 开始时间
F

fishmando

Unregistered / Unconfirmed
GUEST, unregistred user!
如何弹出一个提示框,有确定,取消按钮,我记不起了
 
MessageBox(getactivewindow(),PChar(MessageInfo),PChar(Caption),<br>&nbsp; &nbsp; MB_OKCANCEL);
 
application.messagebox('your text','caption',mb_okcancel+mb_iconinformation)
 
application.messagbox('123','123***',mb_OKCANCLE+mb_ICONINFROMATION);
 
var<br>button: integer;<br>begin<br>&nbsp; Button := Application.messagebox('asdfasd','Message Box', MB_OKCANCEL + <br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MB_DEFBUTTON1 + MB_ICONINFORMATION);<br>&nbsp; if (button = IDOK) then<br>&nbsp; &nbsp; &nbsp;Showmessage('OK');<br>&nbsp; if (button = IDCancel) then<br>&nbsp; &nbsp; &nbsp;Showmessage('cancel');<br>end;
 
Application.Messagbox('asdfjklasd','提示',mb_OKCANCLE+mb_ICONINFROMATION);<br>
 
MessageBox(getactivewindow(),PChar(MessageInfo),PChar(Caption),<br>&nbsp; &nbsp; MB_OKCANCEL);<br>
 
Application.MessageBox('内容','标题',MB_OKCancel+MB_IconWarning);
 
有MessageBox(),Messagedlg(),具体使用看Delphi的帮助,有Example
 
Application.MessageBox()或MessageBox()等等 <br>具体参数 帮助中有详细介绍
 
if &nbsp; messagedlg('你的内容',mtinformation,[mbYES,mbNO],0)=mrYES then<br>&nbsp;state<br>else<br>&nbsp;state;<br>即可!
 
MessageBox(handle,'要显示内容','标题', MB_OKCANCEL + MB_ICONINFORMATION);<br><br>
 
windows.messagebox<br>application.messagebox<br>application.messagedlg
 
有几种:<br>messagebox(handle,'this is text','this is caption',2); {这里数字改变会有不同的box}<br>or<br>messagedlg('this is text','this is caption',mbinformation,[mbok],0);
 
application.messagebox('your text','caption',mb_okcancel+mb_iconinformation)<br>
 
Application.Messagbox('asdfjklasd','提示',mb_OKCANCLE+mb_ICONINFROMATION);<br>你赶快结了这个帖子吧.
 
唉!来晚了!![:(][:(][:D][:D]
 
没事干拿人开涮啊!靠!
 
我觉得Application.MessageBox比较好,Button上的显示是根据系统语言环境改变的。<br>中文Windows上会显示中文,拿给客户的如果是英文显示的总不太好吧。
 
怎么才能 让按钮的 caption显示为中文?
 
后退
顶部