home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
TIMAGEFX.ZIP
/
ABTIMGFX.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-06-04
|
671b
|
40 lines
unit AbtImgFx;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, TStretch;
type
TAboutBox = class(TForm)
OKButton: TBitBtn;
StretchPanel1: TStretchPanel;
Panel1: TPanel;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Panel2: TPanel;
Memo1: TMemo;
procedure OKButtonClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.OKButtonClick(Sender: TObject);
begin
Close;
end;
end.