Search code examples
delphireportingdelphi-2010rave-reports

What are the Rave BE "reports in code" alternatives in a Delphi 2010 migration project?


I want to migrate a Delphi 7 project to Delphi 2010.

We are building "reports in code" with TReportShell and TDetailShell components from Rave BE. Those components does not exist any more in Rave BE 7.7.

Moreover it seems that unicode support is broken in Rave BE ( Displaying unicode text in Rave Reports on Delphi 2009 ).

What sould be the best solution to port this project to Delphi 2010 ?

  1. Reimplement the code written aruond TReportShell and TDetailShell to use the new TRvNDRWriter component ?
  2. Migrate to Fast Report ?
  3. Any other suggestion ?

Solution

  • We provided an open source report builder, to be used from code.

    It's a reporting unit included in our SQlite3 framework, but it can be used standalone... You create your report from code, then you can preview it on the screen. You can then print or export the report as PDF. Note that the report drawing uses GDI+, even if you embed .emf files or TMetaFile in them: with antialiaising, they just look smooth on screen. There are some report-dedicated methods to create the report, but also a true Canvas property, in which you can draw whatever you want.

    There are sample code on the above link. Just right click on the report preview to see options. The main demo of our framework also makes use of this reporting from code. Much more handy than band-driven and component-driven report builders, IMHO.

    It's free, licensed under MPL/LGPL/GPL, and compiles and run from Delphi 6 up to XE. It's 100% Unicode-ready, even before Delphi 2009.