mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 18:13:55 +02:00
10 lines
249 B
ObjectPascal
10 lines
249 B
ObjectPascal
|
|
Uses forms, dialogs, lcltype, controls;
|
|
|
|
procedure TryMessageDlg;
|
|
begin
|
|
if MessageDlg ('Question', 'Do you wish to Execute?', mtConfirmation,
|
|
[mbYes, mbNo, mbIgnore],0) = mrYes
|
|
then { Execute rest of Program };
|
|
end;
|