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

📄 filemanager.~dpr

📁 一个基于局域网的公司公文管理系统
💻 ~DPR
字号:
program FileManager;

uses
  Forms,
  FrmMain in 'FrmMain.pas' {Fmmain},
  personselect in 'personselect.pas' {FrmPersonSel},
  GlobalUnit in 'GlobalUnit.pas',
  LoginUnit in 'LoginUnit.pas' {LoginForm},
  FileCreateFrm in 'FileCreateFrm.pas' {FileCreateForm},
  departselect in 'departselect.pas' {FrmdepartSel},
  userMan in 'userMan.pas' {FuserMan};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TFrmmain, Fmmain);
  Application.CreateForm(TFrmPersonSel, FrmPersonSel);
  Application.CreateForm(TFileCreateForm, FileCreateForm);
  Application.CreateForm(TFrmdepartSel, FrmdepartSel);
  Application.Run;
end.

⌨️ 快捷键说明

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