xsgl.~dpr

来自「本软件应用了Delphi提供的BDE数据库引擎。本系统为政教管理系统」· ~DPR 代码 · 共 22 行

~DPR
22
字号
program xsgl;

uses
  Forms,
  longin in 'longin.pas' {frmmain},
  frmxxcx in 'frmxxcx.pas' {frmcx},
  Unit1 in 'Unit1.pas' {Form1},
  xtwh in 'xtwh.pas' {frmxtwh},
  psw in 'psw.pas' {PasswordDlg};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tfrmmain, frmmain);
  Application.CreateForm(Tfrmcx, frmcx);
  Application.CreateForm(TForm1, Form1);
  Application.CreateForm(Tfrmxtwh, frmxtwh);
  Application.CreateForm(TPasswordDlg, PasswordDlg);
  Application.Run;
end.

⌨️ 快捷键说明

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