home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kompon / d3456 / FILEEXPL.ZIP / Demo1 / About.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2002-03-08  |  822 b   |  48 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ComCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TAboutForm = class(TForm)
  11.     PageControl1: TPageControl;
  12.     TabSheet1: TTabSheet;
  13.     TabSheet2: TTabSheet;
  14.     TabSheet3: TTabSheet;
  15.     Memo1: TMemo;
  16.     Memo2: TMemo;
  17.     Label1: TLabel;
  18.     Label3: TLabel;
  19.     Label2: TLabel;
  20.     Label4: TLabel;
  21.     Label5: TLabel;
  22.     Label6: TLabel;
  23.     Panel1: TPanel;
  24.     BitBtn1: TBitBtn;
  25.     Bevel1: TBevel;
  26.     procedure BitBtn1Click(Sender: TObject);
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. var
  34.   AboutForm: TAboutForm;
  35.  
  36. implementation
  37.  
  38. {$R *.DFM}
  39.  
  40.  
  41. procedure TAboutForm.BitBtn1Click(Sender: TObject);
  42. begin
  43.   close;
  44. end;
  45.  
  46. end.
  47.  
  48.