rave-reports

Landscaping in Rave Reports using Delphi 7

筅森魡賤 提交于 2019-12-24 07:58:45
问题 I have an application that uses Rave Reports on Delphi 7. I want the reports to have its default display in landscape. How am I going to do it? Any suggestions would be very much appreciated. 回答1: Just drop TRvSystem component and set SystemPrinter.Orientation to poLandScape. exemple: RvSystem1.SystemPrinter.Orientation := poLandScape; 来源: https://stackoverflow.com/questions/1665000/landscaping-in-rave-reports-using-delphi-7

Displaying unicode text in Rave Reports on Delphi 2009

青春壹個敷衍的年華 提交于 2019-12-09 21:29:53
问题 I am in the process of porting a Delphi 2006 app to Delphi 2009. Out of the box support for unicode has been easy - almost no work required. Most 3rd party controls already have Delphi 2009 updates available. Rave Reports (latest version 7.6.1, available here) has also been updated, but I cannot seem to get it to correctly display RTF text containing Japanese characters. In Delphi 2006, I loaded RTF to the DataMemo component in a RVCustomConnection's OnGetRow event by reading the RTF from a

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

烈酒焚心 提交于 2019-12-05 07:23:01
问题 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 ? Reimplement the code written aruond TReportShell and TDetailShell to use the new TRvNDRWriter component

Displaying unicode text in Rave Reports on Delphi 2009

时光怂恿深爱的人放手 提交于 2019-12-04 17:48:06
I am in the process of porting a Delphi 2006 app to Delphi 2009. Out of the box support for unicode has been easy - almost no work required. Most 3rd party controls already have Delphi 2009 updates available. Rave Reports (latest version 7.6.1, available here ) has also been updated, but I cannot seem to get it to correctly display RTF text containing Japanese characters. In Delphi 2006, I loaded RTF to the DataMemo component in a RVCustomConnection's OnGetRow event by reading the RTF from a screen control (TLMDRichEdit) using streams and then doing a CustomConnection.WriteBlobData. In the

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

为君一笑 提交于 2019-12-03 21:45:15
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 ? Reimplement the code written aruond TReportShell and TDetailShell to use the new TRvNDRWriter component ? Migrate to Fast Report ? Any other suggestion ? We provided an open source report builder, to be