-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsample.dpr
More file actions
33 lines (30 loc) · 876 Bytes
/
sample.dpr
File metadata and controls
33 lines (30 loc) · 876 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
32
33
program sample;
uses
Vcl.Forms,
uUpdateSql in 'uUpdateSql.pas' {UpdateForm},
uTree in 'uTree.pas' {TreeForm},
Utrans in 'Utrans.pas' {TransForm},
uSplash in 'uSplash.pas' {SplashForm},
uMain in 'uMain.pas' {MainForm},
uDM in 'uDM.pas' {DM: TDataModule},
uDept in 'uDept.pas' {DeptForm},
UbatchMove in 'UbatchMove.pas' {BatchForm},
Vcl.Themes,
Vcl.Styles,
UmyFrame in 'UmyFrame.pas' {Frame1: TFrame},
uInsa in 'uInsa.pas' {InsaForm};
{$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);
Application.CreateForm(TInsaForm, InsaForm);
SplashForm.Hide;
SplashForm.free;
Application.Run;
end.