pascal
1unit SettingsForm;
2
3interface
4
5uses
6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Mask, Vcl.ExtCtrls, TL.Components;
8
9type
10 TfrmSettings = class(TLForm)
11 LabeledEdit1: TLabeledEdit;
12 LabeledEdit2: TLabeledEdit;
13 LabeledEdit3: TLabeledEdit;
14 LabeledEdit4: TLabeledEdit;
15 LabeledEdit5: TLabeledEdit;
16 LabeledEdit6: TLabeledEdit;
17 LabeledEdit7: TLabeledEdit;
18 LabeledEdit8: TLabeledEdit;
19 LabeledEdit9: TLabeledEdit;
20 LabeledEdit10: TLabeledEdit;
21 LabeledEdit11: TLabeledEdit;
22 LabeledEdit12: TLabeledEdit;
23 Button1: TButton;
24 Button2: TButton;
25 Button3: TButton;
26 Label1: TLabel;
27 Label2: TLabel;
28 Label3: TLabel;
29 Label4: TLabel;
30 LabeledEdit13: TLabeledEdit;
31 private
32 { Private declarations }
33 public
34 { Public declarations }
35 end;
36
37var
38 frmSettings: TfrmSettings;
39
40implementation
41
42{$R *.dfm}
43
44end.
45