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 >
Pascal/Delphi Source File  |  1995-08-28  |  712b  |  40 lines

  1. { J'ai tapΘ qu'une ligne de code: close;. Chercher bien: Delphi rules! }
  2. unit Apropos;
  3.  
  4. interface
  5.  
  6. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  7.   Buttons, ExtCtrls;
  8.  
  9. type
  10.   TAboutBox = class(TForm)
  11.     Panel1: TPanel;
  12.     ProgramIcon: TImage;
  13.     ProductName: TLabel;
  14.     Version: TLabel;
  15.     Copyright: TLabel;
  16.     Comments: TLabel;
  17.     OKBouton: TButton;
  18.     Label1: TLabel;
  19.     procedure OKBoutonClick(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   AboutBox: TAboutBox;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TAboutBox.OKBoutonClick(Sender: TObject);
  34. begin
  35.      Close ;
  36. end;
  37.  
  38. end.
  39.  
  40.