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