MgrPkgGen.dpr 486 B

123456789101112131415161718
  1. program MgrPkgGen;
  2. uses
  3. Forms,
  4. MgrPkgGenDBMain in 'MgrPkgGenDBMain.pas' {frmPkgMain},
  5. DModule in 'DModule.pas' {DM: TDataModule},
  6. MgrPkgGenDBEntryEdit in 'MgrPkgGenDBEntryEdit.pas' {frmDBEntry},
  7. MgrPkgGenMgrDModDS in 'MgrPkgGenMgrDModDS.pas' {DMDS: TDataModule};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TDM, DM);
  12. Application.CreateForm(TDMDS, DMDS);
  13. Application.CreateForm(TfrmPkgMain, frmPkgMain);
  14. Application.Run;
  15. end.