nardmoseley
Comments
-
Hi Andy,
Set Report.XlsSettings.IncludeSingleHeader to True
-
Hi Andy,
By default only detail band elements are exported. To override the default, use the DefaultBands property to specify which bands to export or or use the Print To File Setup dialog to define which elements to export.
F… -
Hi Marcos,
I researched this and created a patch for RB 21.02. (I emailed you the patch. )
Emb modified Delphi 11 ShorttimeFormat/LongTimeFormat to return ’nn’ for minutes rather than ‘mm’ it has always returned. The Time pick… -
Hi Steven,
I researched this and created a patch for RB 21.02. I emailed you the patch.
-
Hi Steven,
I'll restore ArrangeControlsHorizontally for the next maintenance release. (It got removed while working on high DPI. It is not called by RB source so didn't think it was being used).
-
Hi Thomas,
Here's an rbWiki article on PDF Unicode support
http://rbwiki.digital-metaphors.com/output/pdf/pdf-unicode-support/ -
Hi Dirk,
Use the Designer to edit the Report definition. Set Report.PrinterSetup SaveDeviceSettings False. Resave the report. The PrinterSetup.DevMode binary information will no longer be saved.
By default SaveDeviceSettings i… -
Hi Alpesh,
To research, I need an example I can build and run in the debugger.
-
Hi Mika,
I tested the example using RB 21.02 and did not encounter any issues.
Try testing with RB 21.02 -
Hi Jeroen,
I created a patch for RB 21.02 that resolves the issue.
I emailed you the patch.
RB developers with an active license can email support@ and request the patch. -
Hi Alpesh,
To research, I need an example I build and run in the debugger.
The call stack ends with TraProgramStatement. That does not provide a clue. -
Hi Alpesh,
I'm able to open the provided templates using RB 21.02 with D7 and also with the latest, D11.
Perhaps you have a corrupt installation. Here's a link to an rbWiki article with detailed steps for cleaning up a corrupt… -
Hi Mohamed,
This is not a currently a feature of RB export Xlsx/Xls devices.
Thanks for the feedback. We'll add it to the wish list.
-
Hi Ken,
In a simple test, I can send email without previewing using TppSMTPOutlook and TppSMTExtendedMAPI. I do not receive a warning dialog.
1. TppSMTPOutlook
I Googled and found some info
From Outlook s… -
Hi Rhonda,
Report.OnInitializeParameters(var aCancel: Boolean);
Set aCancel parameter to True to cancel the report.
-
Hi Thomas,
Access Delphi project options Application | Manifest section and select checkbox - Enable Runtime Themes. This enables Windows to use modern rendering for your windows and controls. And then make sure FinalBuilder is loading a… -
Hi Temo,
Thanks for the up vote.
This is on the ToDo list... -
Hi Thomas,
RB 21 introduces new TppDesigner.AutoSave boolean property. You can set this at Delphi design-time via the object inspector.
-
Hi George,
RB SQL validation uses Row Limit to optimize where supported. I emailed specifics on disabling this for Firebird, it requires modifying the source code.
Going forward best solution is to upgrade to latest Firebird.… -
Hi Ken,
I tested all four combinations: Outlook with/without Admin privileges and RB app with/without Admin privileges. The two where privileges match work, the two where privileges differ, result in error.
I recommend testin… -
Hi Ken,
Please do not post RB source code to this public forum. Instead send to support@
This issue is likely be due to access rights differences between the host application and the email client. If for instance you are runn… -
Hi Faith,
The order was just placed today and has been processed quickly
If you have not received the i… -
Hi Ken,
The Outlook plug-in is not new, what's new is a TppSMTPOutlook.SetModal(aModal: Boolean) class function that be used to specify whether Outlook is displayed modal. The default is True.
The Outlook plug-in can be used b… -
Hi Julien,
I researched this and created a patch for RB 21.
I emailed you about renewing the license. Registered RB developers with an active license can email support@ and request the patch.
-
Hi Dusten,
The RB Drill Down requires a live report, there is no support for export drill down to file.
The Label and DBText elements have a HyperLink property. PDF, Html, Xlsx support the hyper link. So you could consider gen… -
Hi Mike,
I recommend upgrading to RB 21 and then resave the templates. This will convert them to the new text format.
The old RB versions used a proprietary read/write binary format.
-
Hi Adam,
Thanks for the feedback. I'll research adding stream support for the future.
-
Hi Jeroen,
This is a general behavior of RB in dealing with missing fields. It is not specific to RAP. RB does not raise exceptions for missing fields.
-
Hi Andreas,
Try implementing band BeforePrint event like this
myTableGrid.Rows[0].Height := myPipeline['FieldName'];
myReport.Detail.Height := := myPipeline['FieldName'];
notes:
1. Report.Units define… -
Hi Andreas,
The next major release will include multi-monitor enhancements, including save/restore windows position.