This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFmDemo5.pas
71 lines (58 loc) · 1.44 KB
/
FmDemo5.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
* Main form for DelphiDabbler Console Application Runner Classes demo program
* #5: Terminating an Application.
*
* Any copyright in this file is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
}
unit FmDemo5;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,
PJConsoleApp;
type
TForm1 = class(TForm)
Label1: TLabel;
CheckBox1: TCheckBox;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
fApp: TPJConsoleApp;
procedure WorkHandler(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
fApp := TPJConsoleApp.Create;
try
Button2.Enabled := True;
fApp.MaxExecTime := INFINITE;
fApp.KillTimedOutProcess := Checkbox1.Checked;
fApp.TimeSlice := 200;
fApp.Visible := True;
fApp.OnWork := WorkHandler;
if fApp.Execute('Timed 5') then
ShowMessage('Application completed normally')
else
ShowMessageFmt('Error %X: %s', [fApp.ErrorCode, fApp.ErrorMessage]);
finally
Button2.Enabled := False;
FreeAndNil(fApp);
end;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
if Assigned(fApp) then
fApp.Terminate;
end;
procedure TForm1.WorkHandler(Sender: TObject);
begin
Application.ProcessMessages;
end;
end.