home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
FONTSAMP
/
Fontsamp.dpr
< prev
next >
Wrap
Text File
|
1995-09-02
|
385b
|
19 lines
program Fontsamp;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
About in 'ABOUT.PAS' {AboutForm},
Preview in 'PREVIEW.PAS' {PreviewForm},
Drawpage in 'DRAWPAGE.PAS';
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutForm, AboutForm);
Application.CreateForm(TPreviewForm, PreviewForm);
Application.Run;
end.