home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / explorer / update.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-21  |  637 b   |  39 lines

  1. unit Update;
  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.   TUpdateDlg = class(TForm)
  14.     CheckBox1: TCheckBox;
  15.     CheckBox2: TCheckBox;
  16.     CheckBox3: TCheckBox;
  17.     BitBtn1: TBitBtn;
  18.     BitBtn2: TBitBtn;
  19.     Bevel1: TBevel;
  20.     Label1: TLabel;
  21.     Bevel2: TBevel;
  22.     Bevel3: TBevel;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   UpdateDlg: TUpdateDlg;
  31.  
  32.  
  33.  
  34. implementation
  35.  
  36. {$R *.DFM}
  37.  
  38. end.
  39.