forked from devgearedu/DelphiCS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.dpr
More file actions
31 lines (28 loc) · 782 Bytes
/
sample.dpr
File metadata and controls
31 lines (28 loc) · 782 Bytes
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
program sample;
uses
Vcl.Forms,
uMain in 'uMain.pas' {MainForm},
Vcl.Themes,
Vcl.Styles,
USplash in 'USplash.pas' {SplashForm},
uInsa in 'uInsa.pas' {InsaForm},
uDM in 'uDM.pas' {DM: TDataModule},
uDept in 'uDept.pas' {DeptForm},
Utrans in 'Utrans.pas' {TransForm},
uTree in 'uTree.pas' {TreeForm},
uUpdateSql in 'uUpdateSql.pas' {UpdateForm},
UbatchMove in 'UbatchMove.pas' {BatchForm};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('Aqua Light Slate');
SplashForm := TSplashForm.Create(application);
SplashFOrm.Show;
SplaShForm.Refresh;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TDM, DM);
SplashForm.Hide;
SplashForm.free;
Application.Run;
end.