git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@2 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
39 lines
725 B
ObjectPascal
39 lines
725 B
ObjectPascal
|
|
{******************************************}
|
|
{ }
|
|
{ FastReport v3.20 }
|
|
{ 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.
|