home *** CD-ROM | disk | FTP | other *** search
- unit Update;
-
- { Program copyright (c) 1995 by Charles Calvert & Steve Teixeira }
- { Project Name: EXPLORER }
-
- interface
-
- uses
- WinTypes, WinProcs, Classes, Graphics, Forms,
- Controls, Buttons, StdCtrls, ExtCtrls;
-
- type
- TUpdateDlg = class(TForm)
- CheckBox1: TCheckBox;
- CheckBox2: TCheckBox;
- CheckBox3: TCheckBox;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- Bevel1: TBevel;
- Label1: TLabel;
- Bevel2: TBevel;
- Bevel3: TBevel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- UpdateDlg: TUpdateDlg;
-
-
-
- implementation
-
- {$R *.DFM}
-
- end.
-