conndialog.dpr

来自「ODAC 5.7.0.28」· DPR 代码 · 共 27 行

DPR
27
字号
program ConnDialog;

{%DelphiDotNetAssemblyCompiler 'System.Drawing.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Vcl.dll'}
{%DelphiDotNetAssemblyCompiler 'CoreLab.Dac.dll'}

uses
{$IFNDEF LINUX}
  Forms,
{$ELSE}
  QForms,
{$ENDIF}    
  Main in 'Main.pas' {fmMain},
  ConnectForm in 'ConnectForm.pas' {ConnectForm},
  InheritedConnectForm in 'InheritedConnectForm.pas' {fmInheritedConnect},
  MyConnectForm in 'MyConnectForm.pas' {fmMyConnect};

[STAThread]
begin
  Application.CreateForm(TfmMain, fmMain);
  Application.Run;
end.

⌨️ 快捷键说明

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