关于MessageBox请教(50分)

  • 主题发起人 主题发起人 小叶子
  • 开始时间 开始时间

小叶子

Unregistered / Unconfirmed
GUEST, unregistred user!
我想做一个类似这样的: if MessageBox('aa','提示',[mbOKD])=1 then
.....
else
......
可是不对,我不知道怎样用MessageBox,MessageDlg等做交互的对话框。
谢谢高手了! [:)]
 
if Application.MessageBox('您确认要删除吗?', '确认', MB_OKCANCEL or MB_ICONQUESTION) = IDOK then
begin
//
end
else
//
查帮助, 说得很详细
 
if messagebox('aa','message',MB_OKCANCEL)=IDOK then
...
 
看看MSDN吧!
if MessageBox('aa','提示',mb_OK)=IDOK then
……;
 
用Application.MessageBox可以
if Application.MessageBox('aa','提示',MB_YESNO) =IDYES then
...
else
...
 
if MessageDlg('Welcome to my Delphi application. Exit now?',
mtConfirmation, [mbYes, mbNo], 0, mbYes) = mrYes then
begin
MessageDlg('Exiting the Delphi application.', mtInformation,
[mbOk], 0, mbOk);
Close;
end
这个上delphi的函数messagedlg的帮助,和messagebox的使用方法差不多
 
多人接受答案了。
 
后退
顶部