1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
UNIT about;
{$mode objfpc}{$H+}
INTERFACE
USES
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls,
Buttons;
TYPE
TAboutBox = CLASS(TForm)
CloseButton: TBUTTON;
Label1: TLABEL;
Label2: TLABEL;
Warn2Label: TLABEL;
Warn1Label: TLABEL;
Warn3Label: TLABEL;
PROCEDURE Button1CLICK(Sender: TObject);
END;
VAR
AboutBox: TAboutBox;
IMPLEMENTATION
{$R about.lfm}
{ TAboutBox }
PROCEDURE TAboutBox.Button1CLICK(Sender: TObject);
BEGIN
Close;
END;
END.
|