一個簡單的問題,關與messagedlg(100分)

  • 主题发起人 joshua_jia
  • 开始时间
J

joshua_jia

Unregistered / Unconfirmed
GUEST, unregistred user!
請問高手
messagedlg中的消息怎麼樣去換行顯示,多謝
 
#13,不行吗
if MessageDlg('Welcome to my Object Pascal application. Exit now?'+#13+'ok',
mtConfirmation, [mbYes, mbNo], 0) = mrYes then
begin
MessageDlg('Exiting the Object Pascal application.', mtInformation,
[mbOk], 0);
Close;
end;
 
謝謝,ugvanxk
 
接受答案了.
 
顶部