frxunidacreg.pas

来自「CrLab UniDAC 1.0 include sources」· PAS 代码 · 共 39 行

PAS
39
字号

{******************************************}
{                                          }
{             FastReport v4.0              }
{      UniDAC components registration      }
{                                          }

// Created by: CoreLab
// E-mail: unidac@crlab.com

{                                          }
{******************************************}

unit frxUniDACReg;

interface

{$I frx.inc}

procedure Register;

implementation

uses
  Windows, Messages, SysUtils, Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf, DesignEditors
{$ENDIF}
, frxUniDACComponents;

procedure Register;
begin
  RegisterComponents('FastReport 4.0', [TfrxUniDACComponents]);
end;

end.

⌨️ 快捷键说明

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