home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / nastroje / RTF2HTML.ZIP / Rtf2html.dpr < prev    next >
Text File  |  1998-07-03  |  250b  |  16 lines

  1. program rtf2html;
  2.  
  3. uses
  4.   Forms,
  5.   r2hform in 'r2hform.pas' {Form1},
  6.   r2hconv in 'r2hconv.pas',
  7.   Mdfuncs in 'Mdfuncs.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.