unit Unit6; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm6 = class(TForm) GroupBox1: TGroupBox; label_about1: TLabel; Label1: TLabel; Label2: TLabel; Label3: TLabel; Label4: TLabel; Label5: TLabel; Label6: TLabel; Label7: TLabel; GroupBox2: TGroupBox; help: TMemo; procedure Create(Sender: TObject); PROCEDURE CloseQuery(Sender: TObject; var CanClose: Boolean); private { Private declarations } public { Public declarations } end; var Form6: TForm6; implementation uses Unit1; {$R *.dfm} PROCEDURE TForm6.CloseQuery(Sender: TObject; var CanClose: Boolean); BEGIN Self.Visible:=False; CanClose:=False; END; PROCEDURE TForm6.Create(Sender: TObject); BEGIN label_about1.Caption:=label_about1.Caption+version; END; end.