source: trunk/EdcStats.lpr

Last change on this file was 6, checked in by chronos, 2 weeks ago
  • Modified: EDC related code split into EdcProject unit.
  • Added: Partial loading of spot prices.
File size: 582 bytes
Line 
1program EdcStats;
2
3uses
4 {$IFDEF UNIX}
5 cthreads, clocale,
6 {$ENDIF}
7 {$IFDEF HASAMIGA}
8 athreads,
9 {$ENDIF}
10 Interfaces, // this includes the LCL widgetset
11 Forms, tachartlazaruspkg, FormMain, csvdocument_package, Ean, CommonPackage,
12 CoolStreaming, EdcProject, SpotPrice
13 { you can add units after this };
14
15{$R *.res}
16
17begin
18 RequireDerivedFormResource:=True;
19 Application.Scaled:=True;
20 {$PUSH}{$WARN 5044 OFF}
21 Application.MainFormOnTaskbar:=True;
22 {$POP}
23 Application.Initialize;
24 Application.CreateForm(TFormMain, FormMain.FormMain);
25 Application.Run;
26end.
27
Note: See TracBrowser for help on using the repository browser.