-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcommand.pas
More file actions
40 lines (30 loc) · 763 Bytes
/
command.pas
File metadata and controls
40 lines (30 loc) · 763 Bytes
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
unit command;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TcommandF = class(TForm)
Memo2: TMemo;
EditManually: TCheckBox;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure EditManuallyClick(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
commandF: TcommandF;
implementation
uses main;
{$R *.DFM}
procedure TcommandF.FormClose(Sender: TObject; var Action: TCloseAction);
begin
MainForm.neuzeichnen1Click(sender);
end;
procedure TcommandF.EditManuallyClick(Sender: TObject);
begin
commandF.memo2.enabled:=CommandF.EditManually.Checked;
end;
end.