lazarus-ccr/applications/fpbrowser/fpbrowser.dpr
sekelsenmat ead2a75db2 fpbrowser: Starts the code to load images
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1726 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-07-01 07:04:46 +00:00

26 lines
658 B
ObjectPascal

program fpbrowser;
{A program to demonstrate the ThtmlViewer component}
uses
{$IFDEF LCL}
Interfaces,
{$ENDIF}
Forms, 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.