home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
FANCY
/
Fancy.dpr
next >
Wrap
Text File
|
1995-09-02
|
167b
|
14 lines
program Fancy;
uses
Forms,
Main in 'MAIN.PAS' {MainForm};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.