2018-04-20 12:58:33 +00:00
|
|
|
program YearGrid_Demo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
|
|
|
LclVersion, Forms, main;
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
|
|
|
{$IF LCL_FULLVERSION >= 1080000}
|
|
|
|
Application.Scaled := True;
|
|
|
|
{$ENDIF}
|
|
|
|
Application.Initialize;
|
2019-05-28 09:54:35 +00:00
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
2018-04-20 12:58:33 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|