lazarus/examples/gridexamples/cell_overflow/celloverflow_demo.lpr
2017-02-16 20:27:02 +00:00

22 lines
375 B
ObjectPascal

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