lazarus/examples/gridexamples/merged_cells/mergedcells_project.lpr
2016-10-04 12:59:53 +00:00

22 lines
383 B
ObjectPascal

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