Files
lazarus-ccr/applications/lazstats/source/LazStats.lpr
wp_xxyyzz a06c6498ba LazStats: Add and use ReportFrame
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7670 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-09-19 14:33:02 +00:00

34 lines
715 B
ObjectPascal

program LazStats;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, tachartlazaruspkg, tachartprint, lhelpcontrolpkg,
Globals, LicenseUnit, OptionsUnit, MainDM, MainUnit, ReportFrameUnit;
{$R LazStats.res}
begin
RequireDerivedFormResource := True;
Application.Title:='';
Application.Scaled:=True;
Application.Initialize;
LoadOptions;
if not LoggedOn then
begin
if AcceptLicenseForm then
LoggedOn := true
else
Application.Terminate;
end;
Application.CreateForm(TMainDataModule, MainDataModule);
Application.CreateForm(TOS3MainFrm, OS3MainFrm);
Application.Run;
end.