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
| unit OldCaseImg;
|
| interface
|
| uses
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
| Dialogs, StdCtrls, Buttons, ExtCtrls, CheckLst;
|
| type
| TOldCaseImgForm = class(TForm)
| Panel1: TPanel;
| Panel2: TPanel;
| Panel3: TPanel;
| GroupBox1: TGroupBox;
| CheckListBox1: TCheckListBox;
| Splitter1: TSplitter;
| Panel4: TPanel;
| Panel5: TPanel;
| BitBtn1: TBitBtn;
| BitBtn2: TBitBtn;
| private
| { Private declarations }
| public
| { Public declarations }
| end;
|
| var
| OldCaseImgForm: TOldCaseImgForm;
|
| implementation
|
| {$R *.dfm}
|
| end.
|
|