program ProScan; uses Vcl.Forms, ProScanMain in 'ProScanMain.pas' {fmProScanHoofdscherm}, DrieKnoppenScherm in 'UI\DrieKnoppenScherm.pas' {fmDrieKnoppenScherm}, LoginScherm in 'UI\LoginScherm.pas' {fmLoginScherm}, GebruikerService in 'WS\GebruikerService.pas', PopupScherm in 'UI\PopupScherm.pas' {fmPopupScherm}, Images in 'UI\Images.pas' {ImagesScherm}, HomeScherm in 'UI\HomeScherm.pas' {fmHomeScherm}, PalletScherm in 'UI\PalletScherm.pas' {fmPalletScherm}, BestaandePalletScherm in 'UI\BestaandePalletScherm.pas' {fmBestaandePalletScherm}, DnaCodeScherm in 'UI\DnaCodeScherm.pas' {fmDnaCodeScherm}, InfoLogScherm in 'UI\InfoLogScherm.pas' {fmInfoLogScherm}, UiContext in 'UI\UiContext.pas', HernoemPalletScherm in 'UI\HernoemPalletScherm.pas' {fmHernoemPalletScherm}, DnaCodeService in 'WS\DnaCodeService.pas'; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TfmProScanHoofdscherm, fmProScanHoofdscherm); Application.CreateForm(TfmHernoemPalletScherm, fmHernoemPalletScherm); Application.Run; end.