Custom Report Component
I'm attempting to make a custom TppReport component using Delphi 7 and
Report Builder 7.02. I have no problems creating the component but I'm
having issues with invoking the default editors.
I've created my own report component that is a subclass of TppReport and I
added no additonal code to the class. When I add the component to the form
and double-click edit the report, I receive the following message: No
editor registered for this component.
Any help would be greated appreciated.
Thanks in advance.
Report Builder 7.02. I have no problems creating the component but I'm
having issues with invoking the default editors.
I've created my own report component that is a subclass of TppReport and I
added no additonal code to the class. When I add the component to the form
and double-click edit the report, I receive the following message: No
editor registered for this component.
Any help would be greated appreciated.
Thanks in advance.
This discussion has been closed.
Comments
registrations that you need to add.
- I just looked at the old threads in this newsgroup and found one dated
1/16/2002 with a subject of 'Registering TppReportComponentEditor'. From a
response I made to that thread...
uses
ppDsIntf;
RegisterComponentEditor(TppReport, TppReportComponentEditor);
ppRegisterComponentDesigner(TppDesignerWindow, TppReport);
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Best regards,
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Thanks again.