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

📄 p4_1.dpr

📁 欢迎大家相互学习。delphi系统 四个文件夹分别对应书中的四个实例
💻 DPR
字号:
program p4_1;

{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclDbExpress.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclDbRtl.dll'}
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclBdeRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'c:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclDSnap.dll'}

uses
  Forms,
  main in 'main.pas' {main_Form},
  login in 'login.pas' {login_Form},
  MODIUSER in 'MODIUSER.pas' {modiuser_Form},
  usergl in 'usergl.pas' {usergl_Form},
  sjgl in 'sjgl.pas' {sjgl_Form},
  bddgl in 'bddgl.pas' {bddgl_Form},
  gygl in 'gygl.pas' {gygl_Form},
  modigy in 'modigy.pas' {modigy_Form},
  sfgl in 'sfgl.pas' {sfgl_Form},
  sf in 'sf.pas' {sf_Form},
  ModiMM in 'ModiMM.pas' {ModiMMForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(Tmain_Form, main_Form);
  Application.Run;
end.

⌨️ 快捷键说明

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