home *** CD-ROM | disk | FTP | other *** search
/ BUG 6 / BUGCD1997_09.BIN / UTIL / ADDZIP / ADDZIP.EXE / DELPHI / QUICKZIP / ABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-06-01  |  819 b   |  44 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
  8.  
  9. type
  10.   TAboutBox = class(TForm)
  11.     imgImageLeft: TImage;
  12.     imgImageRight: TImage;
  13.     imgAddZip: TImage;
  14.     lblInfo: TLabel;
  15.     lblUsage: TLabel;
  16.     btnOK: TBitBtn;
  17.     lblAddZip: TLabel;
  18.     procedure btnOKClick(Sender: TObject);
  19.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  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.btnOKClick(Sender: TObject);
  34. begin
  35.    Close;
  36. end;
  37.  
  38. procedure TAboutBox.FormClose(Sender: TObject; var Action: TCloseAction);
  39. begin
  40.    Action := caFree;
  41. end;
  42.  
  43. end.
  44.