2016-06-19 22:24:29 +00:00
|
|
|
program demo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2016-07-03 14:47:03 +00:00
|
|
|
Forms, demoMain, laz_visualplanit, LCLTranslator, DefaultTranslator,
|
2016-09-02 17:58:47 +00:00
|
|
|
bufdsdatamodule, printer4lazarus;
|
2016-06-19 22:24:29 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
|
|
|
Application.Initialize;
|
2016-09-02 16:45:47 +00:00
|
|
|
Application.CreateForm(TDemoDM, DemoDM);
|
2016-06-19 22:24:29 +00:00
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|