lazarus/examples/gridexamples/gridcelleditor/gridcelleditor.lpr
2008-10-19 19:18:45 +00:00

19 lines
308 B
ObjectPascal

program GridCellEditor;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.