home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 May
/
Chip_2002-05_cd1.bin
/
sharewar
/
fontlist
/
FONTLIST.DPR
< prev
next >
Wrap
Text File
|
1998-08-23
|
197b
|
14 lines
program FontList;
uses
Forms,
Unit1 in 'Unit1.pas' {FontForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFontForm, FontForm);
Application.Run;
end.