Files
lazarus-ccr/applications/fpbrowser/fpbrowser.dpr

26 lines
675 B
ObjectPascal
Raw Normal View History

program fpbrowser;
{A program to demonstrate the ThtmlViewer component}
uses
{$IFDEF LCL}
Interfaces,
{$ENDIF}
Forms, printer4lazarus, laz_synapse,
mainform {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', pageloader {ImageForm};
begin
Application.Initialize;
Application.CreateForm(TformBrowser, formBrowser);
Application.CreateForm(TSubmitForm, SubmitForm);
Application.Run;
end.