Files
lazarus-ccr/applications/lazstats/source/forms/help/aboutunit.pas
wp_xxyyzz 2f33dc9f7b LazStats: initial commit.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7345 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-03-30 18:01:44 +00:00

51 lines
624 B
ObjectPascal

unit AboutUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, ExtCtrls;
type
{ TAboutBox }
TAboutBox = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
OKButton: TButton;
Panel1: TPanel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
procedure ShowAboutBox;
implementation
procedure ShowAboutBox;
begin
with TAboutBox.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
initialization
{$I aboutunit.lrs}
end.