www.pudn.com > Fr3ReportDLL.rar > frxADOReg.pas


 
{******************************************} 
{                                          } 
{             FastReport v3.0              } 
{       ADO components registration        } 
{                                          } 
{         Copyright (c) 1998-2004          } 
{         by Alexander Tzyganenko,         } 
{            Fast Reports Inc.             } 
{                                          } 
{******************************************} 
 
unit frxADOReg; 
 
interface 
 
{$I frx.inc} 
 
procedure Register; 
 
implementation 
 
uses 
  Windows, Messages, SysUtils, Classes 
{$IFNDEF Delphi6} 
, DsgnIntf 
{$ELSE} 
, DesignIntf, DesignEditors 
{$ENDIF} 
, frxADOComponents; 
 
procedure Register; 
begin 
  RegisterComponents('FastReport 3.0', [TfrxADOComponents]); 
end; 
 
end.