program PlanScan; uses Vcl.Forms, Main in 'Main.pas' {fmMain}, Agent in 'WS\Agent.pas', UiContext in 'UI\UiContext.pas', Images in 'UI\Images.pas', LoginScherm in 'UI\LoginScherm.pas' {fmLogin}, MidasLib, frameDnaCodes in 'UI\frameDnaCodes.pas' {frmDnaCodes: TFrame}, frameGebruikers in 'UI\frameGebruikers.pas' {frmGebruikers: TFrame}, frameKlantinstellingen in 'UI\frameKlantinstellingen.pas' {frmKlantinstellingen: TFrame}, KlantinstellingenDetailScherm in 'UI\KlantinstellingenDetailScherm.pas' {fmKlantinstellingenDetail}, GebruikerService in 'WS\GebruikerService.pas', ProboxPrinterKeuze in 'UI\ProboxPrinterKeuze.pas' {formProboxPrinterKeuze}, AfdrukService in 'WS\AfdrukService.pas', DnaCodeService in 'WS\DnaCodeService.pas'; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.Title := 'PlanScan'; Application.CreateForm(TfmMain, fmMain); Application.CreateForm(TfmLogin, fmLogin); Application.CreateForm(TfmKlantinstellingenDetail, fmKlantinstellingenDetail); Application.CreateForm(TformProboxPrinterKeuze, formProboxPrinterKeuze); Application.Run; end.