home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / explorer / welcome.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-20  |  533b  |  33 lines

  1. unit Welcome;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert & Steve Teixeira }
  4. { Project Name: EXPLORER }
  5.  
  6. interface
  7.  
  8. uses
  9.   WinTypes, WinProcs, Classes, Graphics, Forms,
  10.   Controls, Buttons, StdCtrls, ExtCtrls;
  11.  
  12. type
  13.   TWelcomeDlg = class(TForm)
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Bevel1: TBevel;
  17.     BitBtn1: TBitBtn;
  18.     Bevel2: TBevel;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   WelcomeDlg: TWelcomeDlg;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.