2015-01-08 17:36:41 +00:00
|
|
|
program fpschartsource;
|
2010-05-01 18:10:38 +00:00
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2015-01-08 17:36:41 +00:00
|
|
|
Forms, mainform, tachartlazaruspkg
|
|
|
|
{ you can add units after this };
|
2010-05-01 18:10:38 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
2015-01-08 17:36:41 +00:00
|
|
|
RequireDerivedFormResource := True;
|
2010-05-01 18:10:38 +00:00
|
|
|
Application.Initialize;
|
2015-01-08 17:36:41 +00:00
|
|
|
Application.CreateForm(TForm1, Form1);
|
2010-05-01 18:10:38 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|