⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deport.dpr

📁 一个很不错的仓库管理系统,能容进各种软件中去,
💻 DPR
字号:
program deport;

uses
  Forms,
  TempletForm in 'TEMPLETFORM.pas' {TEMPLETF},
  main_unit in 'main_unit.pas' {main_form},
  MYTEMPLETFORM in 'MYTEMPLETFORM.pas' {MYTEMPLETF},
  goodsin_unit in 'goodsin_unit.pas' {goods_in},
  data_unit in 'data_unit.pas' {data: TDataModule},
  login_unit in 'login_unit.pas' {login},
  withdraw_unit in 'withdraw_unit.pas' {withdraw},
  exchange_unit in 'exchange_unit.pas' {exchange},
  check_unit in 'check_unit.pas' {check},
  manufacturer_add_unit in 'manufacturer_add_unit.pas' {manufacturer_add},
  manufacturer_unit in 'manufacturer_unit.pas' {manufacturer},
  receive_unit in 'receive_unit.pas' {receive},
  depot_unit in 'depot_unit.pas' {depot},
  depot_add_unit in 'depot_add_unit.pas' {depot_add},
  sell_unit in 'sell_unit.pas' {sell},
  goods_out_unit in 'goods_out_unit.pas' {goods_out},
  storage_unit in 'storage_unit.pas' {storage};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tmain_form, main_form);
  Application.CreateForm(TTEMPLETF, TEMPLETF);
  Application.CreateForm(TMYTEMPLETF, MYTEMPLETF);
  Application.CreateForm(Tgoods_in, goods_in);
  Application.CreateForm(Tdata, data);
  Application.CreateForm(Tlogin, login);
  Application.CreateForm(Twithdraw, withdraw);
  Application.CreateForm(Texchange, exchange);
  Application.CreateForm(Tcheck, check);
  Application.CreateForm(Tmanufacturer_add, manufacturer_add);
  Application.CreateForm(Tmanufacturer, manufacturer);
  Application.CreateForm(Treceive, receive);
  Application.CreateForm(Tdepot, depot);
  Application.CreateForm(Tdepot_add, depot_add);
  Application.CreateForm(Tsell, sell);
  Application.CreateForm(Tgoods_out, goods_out);
  Application.CreateForm(Tstorage, storage);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -