nicocizik
Comments
-
Hi Andrew,
Which version of ReportBuilder and Delphi are you using? Also which DB and connectivity are you currently using to access your data?
Which events are you using to test for the empty data? If you create a new empty … -
Hi Jens,
This can be done by creating loops around the PrintToDevices calls (or perhaps creating a sub routine to handle it more elegantly). Something like the following.v…
-
Hi Jens,
It is possible to merge multiple reports into a single file using the built-in Device.StartPrintJob and Device.EndPrintJob properties. See the following article for more information and an example.
in Merge Reports Comment by nicocizik October 2019 -
Hi Hartono,
This error indicates that an old .dcu file is still being used with your project. Check your library path to be sure there are no RB .dcu files present (other than in the \RBuilder\Lib\ directory), then recompile. If you sti… -
Hi Michael,
Which version of ReportBuilder and Delphi you are currently using?
Please note that we on have the resources to provide support for Delphi developers with an active software subscription to ReportBuilder.
-
Hi Ken,
In my quick testing, it appears to be possible with a RAP passthru function from the AfterPrint event after checking for the proper device. Something like the following...in Auto close preview in RAP Comment by nicocizik September 2019
-
Hi Ueliton,
There is a patch available for the first issue. I sent this to your email address.
The second issue appears to be a DB error. Which database and connectivity are you using for your application? During a quick Goo… -
Hi Martin,
This is not a known issue. Which version of ReportBuilder and Delphi are you using? Is the user able to change the actual font? Are they able to change the font style such as bold or italic? Are they able to select a new fon… -
Hi Ralf,
ReportBuilder does not have auto font scaling so you will need to measure the text manually. I suggest creating a TBitmap and using the Canvas.TextWidth and Canvas.TextHeight to do so.
-- pseudo code --in Add watermark: Autosize Font? Comment by nicocizik September 2019
-
Hi Ian,
In the Header.BeforePrint, set the caption of a label to the value of the report parameter.
ppLabel2.Caption := ppReport1.Parameters['Parameter1'].Value;Hi Ömer,
If you revert back to RB 19, does the report print properly?
The image you posted does not display. We do not permit uploading images to our server. It is best to use a cloud drive to do so and then add it using the …Hi Brad,
RAP does not support set types. To work around this we have added helper boolean properties for certain sets (ex. TFont.Style). I will add it to our list to add some for NoDataBehaviors.
Currently you will need to cr…As a test, try creating a new Delphi app with a report and button on a form. Set the EmailSettings.Enabled to True and call ppReport1.Print from the button OnClick.
You can also try tracing into the TppPreview.BeforePreview routine where…Hi Dusten,
If the Report.EmailSettings.Enabled is set to True, the email button should appear. The only reasons it wouldn't is that it is being set to false elsewhere or your code is not executing.
Are you loading templates? …Hi Ian,
I suggest taking a look at the installed AutoSearch demos provided with ReportBuilder. Using AutoSearch allows your users to define a search condition for your data before the report executes.
Also, if you are using DA…Hi Vlad,
Please send all examples in .zip format to support@digital-metaphors.com.
Hi Vlad,
Which version of ReportBuilder and Delphi are you using? Are you using borders for your label(s)? Are you able to recreate this behavior with a simple app? If so, please send it to us using only RB and Delphi components and we…Hi Dima,
This feature did not make it into the latest release but it is still on our list of possible enhancements for a future release.
Thanks for your feedback.
Hi Bohdan,
The pre-compiled object files included with ReportBuilder are built for convenience but may not match the version of Android you are building for. I suggest altering your library path to point toward the source files to recrea…Hi David,
My first suggestion would be to set the Report.PreviewSettings.SinglePageOnly property to True and see if that helps the issue. It's possible the ThreadedPageCache mixed with another aspect of your app is causing the problem.Hi David,
We need more information about this specific AV in order to track down the issue. When does the AV occur? Are you able to trace into the RB source when the AV happens? Are you able to recreate this AV with a simple applicatio…Hi LJ,
Report templates can be saved as ASCII text by adjusting the Report.Template.Format property before saving. The .rtm file will then be viewable in virtually any text editor. This should make it fairly easy to perform a diff on di…Hi Ricardo,
Take a look at the following articles on troubleshooting email issues. Also, if you are primarily using Outlook, I suggest trying the ppSMTPOutlook plugin as it seems to be the most reliable.
in Email function not working on one machine Comment by nicocizik August 2019Hi Scott,
Unless you have a need for nested groups, I would avoid using multiple groups inside the report.
If you are simply looking to alter the breaking field of a single group, I suggest assigning the Group.BreakName propert…Take a look at the Report.DeviceType property.
Report.DeviceTy…
Julio,
I'm very sorry but it is absolutely necessary for us to build our products with the latest version(s) of Delphi. It is the responsibility of Embarcadero to keep their minor updates backward compatible. In this particular case, it…Hi Frank,
There is a patch available for RB 20 that solves this issue. All registered users with an active software subscription can email support@digital-metaphors.com to receive the patch.
After researching this, it is our understanding that Delphi 10.2 Update 3 is required to successfully use ReportBuilder 20. Please be sure to have Update 3 installed before installing ReportBuilder 20 to avoid these issues.
Our website h…Hi Ian,
Thanks for the feedback. We will add this to our list of possible enhancements for a later release of ReportBuilder.
Hi Dusten,
The events you are using may be firing too late to make changes to the Report.PDFSettings and still take effect. Try using an earlier event such as OnInitializeParameters and see if that helps.
Otherwise, before the…