home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / aplikace / office / ccopier1 / source / scabout.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-02-14  |  509 b   |  33 lines

  1. unit Scabout;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     ProgramIcon: TImage;
  13.     ProductName: TLabel;
  14.     Version: TLabel;
  15.     Copyright: TLabel;
  16.     Comments: TLabel;
  17.     Label1: TLabel;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AboutBox: TAboutBox;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.  
  33.