FastReport_FMX_2.8.12/LibD28/FMXfrxRegDB.pas

39 lines
983 B
ObjectPascal
Raw Normal View History

2024-01-10 21:50:38 +01:00
{******************************************}
{ }
{ FastReport v4.0 }
{ Registration unit }
{ }
{ Copyright (c) 1998-2008 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{******************************************}
unit FMXfrxRegDB;
{$I frx.inc}
interface
procedure Register;
implementation
uses
System.SysUtils, System.Classes, FMX.Types, FMX.Forms, FMX.Controls,
DesignIntf, DesignEditors,
FMX.frxDBSet, FMX.frxCustomDB, FMX.frxCustomDBEditor, FMX.frxCustomDBRTTI, FMX.frxEditMD,
FMX.frxEditQueryParams;
{-----------------------------------------------------------------------}
procedure Register;
begin
RegisterComponents('FastReport 2.0 FMX', [TfrxDBDataset]);
///GroupDescendentsWith(TfrxDBDataset, TControl);
end;
end.