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.