home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 October
/
Chip_2001-10_cd1.bin
/
zkuste
/
delphi
/
nastroje
/
RTF2HTML.ZIP
/
Rtf2html.dpr
< prev
next >
Wrap
Text File
|
1998-07-03
|
250b
|
16 lines
program rtf2html;
uses
Forms,
r2hform in 'r2hform.pas' {Form1},
r2hconv in 'r2hconv.pas',
Mdfuncs in 'Mdfuncs.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.