p4_1.dpr

来自「欢迎大家相互学习。delphi系统 四个文件夹分别对应书中的四个实例」· DPR 代码 · 共 33 行

DPR
33
字号
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 + =
减小字号Ctrl + -
显示快捷键?