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