-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECOLOG.lpr
72 lines (67 loc) · 1.73 KB
/
ECOLOG.lpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
program ECOLOG;
{$mode objfpc}{$H+}
uses {$IFDEF UNIX} {$IFDEF UseCThreads}
cthreads, {$ENDIF} {$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms,
printer4lazarus,
lazdbexport,
multiframepackage,
zmsql,
FrameViewer09,
main,
info,
filter,
about,
cluster,
nmds,
cca,
ca,
dca,
export,
pco,
pca,
rda,
child,
splash,
report,
useful,
diversity,
{$IFDEF WINDOWS}ShpAPI129,
{$ENDIF} progress,
eval, twinsp, kmeans, anosim, simper, bioenv, group;
{$R *.res}
var
SplashScreen: TSplashForm;
begin
RequireDerivedFormResource := True;
Application.Scaled := True;
Application.Initialize;
SplashScreen := TSplashForm.Create(Application);
SplashScreen.Show;
SplashScreen.Update;
while not SplashScreen.Completed do
Application.ProcessMessages;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TProjectDlg, ProjectDlg);
Application.CreateForm(TFilterDlg, FilterDlg);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TClusterDlg, ClusterDlg);
Application.CreateForm(TNMDSDlg, NMDSDlg);
Application.CreateForm(TCCADlg, CCADlg);
Application.CreateForm(TCADlg, CADlg);
Application.CreateForm(TPCODlg, PCODlg);
Application.CreateForm(TPCADlg, PCADlg);
Application.CreateForm(TRDADlg, RDADlg);
SplashScreen.Hide;
SplashScreen.Free;
Application.CreateForm(TProgressDlg, ProgressDlg);
Application.CreateForm(TDCADlg, DCADlg);
Application.CreateForm(TTWSPDlg, TWSPDlg);
Application.CreateForm(TKMeansDlg, KMeansDlg);
Application.CreateForm(TANOSIMDlg, ANOSIMDlg);
Application.CreateForm(TSIMPERDlg, SIMPERDlg);
Application.CreateForm(TBIOENVDlg, BIOENVDlg);
Application.CreateForm(TGroupDlg, GroupDlg);
Application.Run;
end.