FastReport_2022_VCL/Source/frxRegIBO.pas

39 lines
808 B
ObjectPascal
Raw Permalink Normal View History

2024-01-01 16:13:08 +01:00
{******************************************}
{ }
{ FastReport VCL }
{ Registration unit }
{ }
{ Copyright (c) 1998-2021 }
{ by Fast Reports Inc. }
{ }
{******************************************}
unit frxRegIBO;
{$I frx.inc}
interface
procedure Register;
implementation
uses
Windows, Messages, SysUtils, Classes, Forms, Controls,
{$IFNDEF Delphi6}
DsgnIntf,
{$ELSE}
DesignIntf, DesignEditors,
{$ENDIF}
frxIBOSet;
{-----------------------------------------------------------------------}
procedure Register;
begin
RegisterComponents('FastReport VCL', [TfrxIBODataset]);
end;
end.