[go: up one dir, main page]

Menu

[r89]: / rpregvcl.pas  Maximize  Restore  History

Download this file

53 lines (41 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{*******************************************************}
{ }
{ Rpregvcl }
{ }
{ Units that registers the reportmanager engine }
{ vcl version Delphi 6 component palette }
{ }
{ Copyright (c) 1994-2003 Toni Martir }
{ }
{ This file is under the MPL license }
{ If you enhace this file you must provide }
{ source code }
{ }
{*******************************************************}
unit rpregvcl;
interface
{$I rpconf.inc}
uses
Classes,Graphics,rpvclreport,rpexpredlgvcl,rpmaskedit,rpdbgridvcl,rpdbdatetimepicker,
{$IFDEF DELPHI2007UP}
rpactivexreport,rpwebmetaclient,
{$ENDIF}
rppreviewcontrol;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Reportman', [TVCLReport]);
RegisterComponents('Reportman', [TRpExpreDialogVCL]);
RegisterComponents('Reportman', [TRpMaskEdit]);
RegisterComponents('Reportman', [TRpGrid]);
RegisterComponents('Reportman', [TRpPreviewControl]);
RegisterComponents('Reportman', [TRpDateTimePicker]);
// TRpActiveXReport is a Wrapper to generate the ActiveX version
// with Delphi 6 Active X Control Wizard
{$IFDEF DELPHI2007UP}
RegisterComponents('Reportman', [TRpActiveXReport]);
RegisterComponents('Reportman', [TRpWebMetaPrint]);
{$ENDIF}
end;
end.