lazarus/components/lazreport/samples/ChildBand_Example/ChildBand_Example.lpr
2014-11-13 16:59:18 +00:00

22 lines
370 B
ObjectPascal

program ChildBand_Example;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.