mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 22:52:49 +02:00
13 lines
419 B
ObjectPascal
13 lines
419 B
ObjectPascal
|
|
Uses Forms, Dialogs, LCLType;
|
|
|
|
Procedure DisplayMessageBox;
|
|
var reply, boxstyle: integer;
|
|
begin
|
|
with application do begin
|
|
boxstyle := MB_ICONQUESTION + MB_YESNO;
|
|
reply := MessageBox ('Press either button', 'MessageBoxDemo', boxstyle);
|
|
if reply = IDYES then MessageBox ('Yes ', 'Reply',MB_ICONINFORMATION)
|
|
else MessageBox ('No ', 'Reply', MB_ICONHAND)
|
|
end;
|