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 pathFmDemo9.pas
77 lines (65 loc) · 1.46 KB
/
FmDemo9.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
71
72
73
74
75
76
{
* Main form for DelphiDabbler Console Application Runner Classes demo program
* #9: Subclassing TPJConsoleApp.
*
* Any copyright in this file is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
}
unit FmDemo9;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Button1: TButton;
Memo1: TMemo;
Memo2: TMemo;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
uses
UConsoleAppEx;
{$R *.dfm}
{ TForm1 }
procedure TForm1.Button1Click(Sender: TObject);
var
App: TConsoleAppEx;
InStream: TStream;
OutStream: TStream;
begin
// Set up i/o streams
InStream := nil;
OutStream := nil;
try
InStream := TMemoryStream.Create;
Memo1.Lines.SaveToStream(InStream);
InStream.Position := 0;
OutStream := TMemoryStream.Create;
// Run console app
App := TConsoleAppEx.Create;
try
App.TimeSlice := 2;
if not App.Execute('Echoer "-->"', InStream, OutStream) then
raise Exception.CreateFmt(
'Error %X: %s', [App.ErrorCode, App.ErrorMessage]
);
finally
App.Free;
end;
// Read output stream
OutStream.Position := 0;
Memo2.Lines.LoadFromStream(OutStream);
finally
InStream.Free;
OutStream.Free;
end;
end;
end.