nicocizik
Comments
-
Hi Yong,
ReportBuilder is not designed to export individual subreports to file. It can however export individual pages or groups to file. If you create a group that breaks after each subreport, you could export each group to an individu… -
Hi Goran,
As the article I referenced states, the ReportBuilder RichText component is a wrapper around the Delphi TRichEdit control. This means it would be up to Embarcadero to enhance their TRichEdit component first, then those features… -
Hi Goran,
See the following article on current RichText support in ReportBuilder. This has not changed for RB 20.
We will consider enhancing this for other third party RTF controls in a future release. Thanks for the feedback… -
Hi Steve,
The issue is likely that your report is connected to the same dataset as the crosstab. This means that the crosstab will repeat for each detail band inside the report. If you would like the crosstab to display only once, you c… -
Hi Jens,
An Autosized label/drawtext would not give you the effect you are after. Autosize, resizes the control's bounding rectangle to fit the text inside, it does not adjust the font size to fill a given area. What you need is an auto… -
Hi Hartono,
The information you requested has been sent to your email.
-
Take a look at the following article/example on adding a watermark to a page. You will want to size the draw command to the size of the page to make the text as large as possible (sizing font is up to you however). You can do this using the Report…
-
Hi Jens,
By assigning the TppDrawText.Page and also inserting it into the page, you are essentially adding the draw command twice, which will cause errors when destroying. Try removing the lDrawText.Page := lPage; line and see if that so… -
Hi Andrew,
It appears you have a valid software subscription but are using RB 19.02. I highly recommend updating to the latest version as we do not have the resources to provide extended support (patches, fixes, etc.) for older versions … -
Here is the more elegant solution I mentioned above
.
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 2019Hi 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 2019Hi 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 2019Hi 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.