frxsdacreg.pas
来自「ODAC+SDAC源代码」· PAS 代码 · 共 39 行
PAS
39 行
{******************************************}
{ }
{ FastReport v3.0 }
{ SDAC components registration }
{ }
// Created by: CoreLab
// E-mail: sdac@crlab.com
{ }
{******************************************}
unit frxSDACReg;
interface
{$I frx.inc}
procedure Register;
implementation
uses
Windows, Messages, SysUtils, Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf, DesignEditors
{$ENDIF}
, frxSDACComponents;
procedure Register;
begin
RegisterComponents('FastReport 3.0', [TfrxSDACComponents]);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?