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

📄 asset.~dpr

📁 固定资产管理系统源码 资产管理 查询管理 报表管理 系统管理
💻 ~DPR
字号:
program Asset;

uses
  Forms,
  UntAsset in 'UntAsset.pas' {frmAsset},
  UntBasic in 'UntBasic.pas' {frmbasic},
  SelfFunc in 'SelfFunc.pas',
  UntMove in 'UntMove.pas' {FrmMove},
  UntMaintenance in 'UntMaintenance.pas' {FrmuntMaintenance},
  UntData in 'UntData.pas' {FrmData},
  UntBarcodePD in 'UntBarcodePD.pas' {frmBarcodePD},
  UntDMAsset in 'UntDMAsset.pas' {DMasset: TDataModule},
  UntAbout in 'UntAbout.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TfrmAsset, frmAsset);
  Application.CreateForm(Tfrmbasic, frmbasic);
  Application.CreateForm(TFrmMove, FrmMove);
  Application.CreateForm(TFrmuntMaintenance, FrmuntMaintenance);
  Application.CreateForm(TFrmData, FrmData);
  Application.CreateForm(TfrmBarcodePD, frmBarcodePD);
  Application.CreateForm(TDMasset, DMasset);
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

⌨️ 快捷键说明

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