unit Licbox; interface uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, Buttons, ExtCtrls; type TAboutBox1 = class(TForm) OKButton: TButton; Label1: TLabel; Label2: TLabel; Label4: TLabel; Label5: TLabel; Label6: TLabel; Edit2: TEdit; Edit1: TEdit; Label7: TLabel; Edit3: TEdit; private { Private declarations } public { Public declarations } end; var AboutBox1: TAboutBox1; implementation {$R *.dfm} end.