2018-03-16 18:51:45 +00:00
|
|
|
program JVDBTreeViewDemo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
|
|
|
LCLVersion, Forms, Main
|
|
|
|
{ you can add units after this };
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
|
|
|
{$IFDEF LCLVersion >= 1080000}
|
|
|
|
Application.Scaled := True;
|
|
|
|
{$ENDIF}
|
2019-05-29 23:35:34 +00:00
|
|
|
Application.Scaled:=True;
|
2018-03-16 18:51:45 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TForm1, Form1);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|