42 lines
880 B
ObjectPascal
42 lines
880 B
ObjectPascal
|
|
{******************************************}
|
|
{ }
|
|
{ FastReport VCL }
|
|
{ DBX components registration }
|
|
{ }
|
|
{ Copyright (c) 1998-2021 }
|
|
{ by Fast Reports Inc. }
|
|
{ }
|
|
{******************************************}
|
|
|
|
unit frxDBXReg;
|
|
|
|
interface
|
|
|
|
{$I frx.inc}
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Controls
|
|
{$IFNDEF Delphi6}
|
|
, DsgnIntf
|
|
{$ELSE}
|
|
, DesignIntf, DesignEditors
|
|
{$ENDIF}
|
|
, frxDBXComponents;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents('FastReport VCL', [TfrxDBXComponents]);
|
|
{$IFDEF DELPHI16}
|
|
//StartClassGroup(TControl);
|
|
//ActivateClassGroup(TControl);
|
|
//GroupDescendentsWith(TfrxDBXComponents, TControl);
|
|
{$ENDIF}
|
|
end;
|
|
|
|
end.
|