lazarus-ccr/components/thtmlport/demo_src/htmldemo.dpr
2009-11-08 22:47:15 +00:00

30 lines
678 B
ObjectPascal

program HtmlDemo;
{A program to demonstrate the ThtmlViewer component}
uses
{$IFDEF LCL}
Interfaces,
{$ENDIF}
Forms,
demounit in 'demounit.pas' {Form1},
Submit in 'Submit.pas' {SubmitForm},
Fontdlg in 'Fontdlg.pas' {FontForm},
Htmlabt in 'Htmlabt.pas' {AboutBox},
{$IFNDEF LCL}
PreviewForm in 'PreviewForm.pas' {PreviewForm},
Gopage in 'Gopage.pas' {GoPageForm},
PrintStatusForm in 'PrintStatusForm.pas' {PrnStatusForm},
{$ENDIF}
ImgForm in 'ImgForm.pas' {ImageForm};
{$IFDEF MSWINDOWS}
{$R *.res}
{$ENDIF}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TSubmitForm, SubmitForm);
Application.Run;
end.