home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9ZIP / TSUZDLL.ZIP / EXAM3 / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1998-03-18  |  460b  |  31 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, Buttons, ExtCtrls;
  8.  
  9. type
  10.   TFAbout = class(TForm)
  11.     Label1: TLabel;
  12.     BitBtn1: TBitBtn;
  13.     Label2: TLabel;
  14.     Label3: TLabel;
  15.     Label4: TLabel;
  16.     Label5: TLabel;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   FAbout: TFAbout;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.