program EdcStats; uses {$IFDEF UNIX} cthreads, clocale, {$ENDIF} {$IFDEF HASAMIGA} athreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, tachartlazaruspkg, FormMain, csvdocument_package, Ean, CommonPackage { you can add units after this }; {$R *.res} begin RequireDerivedFormResource:=True; Application.Scaled:=True; {$PUSH}{$WARN 5044 OFF} Application.MainFormOnTaskbar:=True; {$POP} Application.Initialize; Application.CreateForm(TFormMain, FormMain.FormMain); Application.Run; end.