-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDSC.dpr
27 lines (24 loc) · 862 Bytes
/
DSC.dpr
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
program DSC;
uses
Forms,
Main in 'Main.pas' {FormMain},
Functions in 'Functions.pas',
CGroup in 'CGroup.pas' {FormChangeGroup},
CFunction in 'CFunction.pas' {FormCFunction},
CompileFunctUnit in 'CompileFunctUnit.pas' {FormCompileFunct},
WaitDialog in 'WaitDialog.pas' {FormWait},
About in 'About.pas' {FormAbout},
GoToXY in 'GoToXY.pas' {FormGoTo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Äåêàðòîâà ñèñòåìà êîîðäèíàò';
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TFormChangeGroup, FormChangeGroup);
Application.CreateForm(TFormCFunction, FormCFunction);
Application.CreateForm(TFormCompileFunct, FormCompileFunct);
Application.CreateForm(TFormWait, FormWait);
Application.CreateForm(TFormAbout, FormAbout);
Application.CreateForm(TFormGoTo, FormGoTo);
Application.Run;
end.