Componentes.Terceros.FastRe.../official/4.7.71/Source/frxRegIBO.pas
2009-02-27 12:41:18 +00:00

43 lines
900 B
ObjectPascal

{******************************************}
{ }
{ FastReport v4.0 }
{ Registration unit }
{ }
{ Copyright (c) 1998-2008 }
{ by Alexander Tzyganenko, }
{ 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 4.0', [TfrxIBODataset]);
end;
end.
//