lazarus/components/lazreport/samples/editor/calleditorwithpkg.lpr
2014-01-27 07:45:54 +00:00

20 lines
317 B
ObjectPascal

program calleditorwithpkg;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms,
maincalleditor,
lazreport;
{$R calleditorwithpkg.res}
begin
Application.Title:='LazReport Designer';
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.