home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 25
/
CD_ASCQ_25_1095.iso
/
win
/
fr
/
evain
/
vagavag
/
sources
/
apropos.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-08-28
|
712b
|
40 lines
{ J'ai tapΘ qu'une ligne de code: close;. Chercher bien: Delphi rules! }
unit Apropos;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
OKBouton: TButton;
Label1: TLabel;
procedure OKBoutonClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.OKBoutonClick(Sender: TObject);
begin
Close ;
end;
end.