home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / HTMLVIEW.ZIP / DEMOSRC.ZIP / HTMLDEMO.DPR < prev    next >
Encoding:
Text File  |  1995-09-19  |  339 b   |  17 lines

  1. program Htmldemo;
  2.  
  3. uses
  4.   Forms,
  5.   Demounit in 'DEMOUNIT.PAS' {Form1},
  6.   Fontdlg in 'FONTDLG.PAS' {FontForm},
  7.   Htmlabt in 'HTMLABT.PAS' {AboutBox},
  8.   Submit in 'SUBMIT.PAS' {SubmitForm};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TSubmitForm, SubmitForm);
  15.   Application.Run;
  16. end.
  17.