-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathAAcircuit1.dpr
30 lines (27 loc) · 965 Bytes
/
AAcircuit1.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
28
29
30
program AAcircuit1;
uses
Forms,
main in 'main.pas' {mainForm},
component in 'component.pas' {Seditform},
scanmemo in 'scanmemo.pas' {sresult},
command in 'command.pas' {commandF},
clipBformunit in 'clipBformunit.pas' {clipbForm},
selection in 'selection.pas' {selectform},
splash in 'splash.pas' {splashF},
magline in 'magline.pas' {maglineF},
ImportASC in 'ImportASC.pas';
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'AACircuit 1.28.7 beta';
Application.HelpFile := 'AACIRCUIT.HLP';
Application.CreateForm(TmainForm, mainForm);
Application.CreateForm(TSeditform, Seditform);
Application.CreateForm(Tsresult, sresult);
Application.CreateForm(TcommandF, commandF);
Application.CreateForm(TclipbForm, clipbForm);
Application.CreateForm(Tselectform, selectform);
Application.CreateForm(TsplashF, splashF);
Application.CreateForm(TmaglineF, maglineF);
Application.Run;
end.