unit AboutUnit; {$mode objfpc}{$H+} interface uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons, StdCtrls; type { TAboutForm } TAboutForm = class(TForm) BitBtn1: TBitBtn; Label1: TLabel; Label2: TLabel; Label3: TLabel; private { private declarations } public { public declarations } end; var AboutForm: TAboutForm; implementation {$R *.lfm} end.