vtable.dpr
来自「ODAC 5.7.0.28」· DPR 代码 · 共 24 行
DPR
24 行
program VTable;
{%DelphiDotNetAssemblyCompiler 'Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.Vcl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbCtrls.dll'}
{%DelphiDotNetAssemblyCompiler 'Borland.VclDbRtl.dll'}
{%DelphiDotNetAssemblyCompiler 'System.dll'}
{%DelphiDotNetAssemblyCompiler 'System.Data.dll'}
{%DelphiDotNetAssemblyCompiler 'System.Drawing.dll'}
uses
Forms,
Main in 'Main.pas' {fmMain};
{$R *.res}
[STAThread]
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?