unit about; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, Buttons, StdCtrls, ExtCtrls, LCLIntf; type { TForm_About } TForm_About = class(TForm) BitBtn1: TBitBtn; Image1: TImage; Label1: TLabel; Lab_Man: TLabel; Lab_Text: TLabel; Lab_Ver: TLabel; procedure FormCreate(Sender: TObject); procedure Lab_ManClick(Sender: TObject); private { private declarations } public { public declarations } end; var Form_About: TForm_About; implementation { TForm_About } uses gvars; procedure TForm_About.FormCreate(Sender: TObject); begin Lab_Ver.Caption:=myVersion; Lab_Text.Caption:=rsWrittenIn201; end; procedure TForm_About.Lab_ManClick(Sender: TObject); begin OpenURL('http://forge.lazarusforum.de/projects/lazupdater/files'); end; initialization {$I about.lrs} end.