nicocizik
Comments
-
Hi Thomas,
There are a couple options here:
1. After loading a template, run a conversion routine that alters the report's datapipeline property and then loops through each band ( in Rename TppDBPipeline Comment by nicocizik February 2022 -
Hi Christophe,
Unfortunately it is not currently possible to "force" Outlook to insert the signature when sending from ReportBuilder.
The Signature property can be used to either define a signature or provide a path to a si… -
Remco,
Yes, it is still on our list to research and possibly add native DOCX format export to ReportBuilder for a future release.
-
Hi Ralf,
This is working as designed. In order for a stretchable component (memo, RichText, etc) to stretch vertically, it needs to be placed in a dynamic height band. Static-only bands such as the Footer Band and Page Layers (PageStyle… -
Hi Robert,
This is something that will need to be done in code before the report prints. Assuming the parameter value is already defined, you can use the OnInitializeParameters event to check the ppSetGroup parameter and toggle the Group… -
Thanks for the clarification.
In this case you will need to make the sum calculation manually using a TppVariable and the OnCalc event. Something like the following:…
-
Hi Mario,
The DBCalc component has a SuppressRepeatedValues property. Use this to get the effect you are after.
-
Simply set the Report.Template.Format property to ftASCII.
-
Hi Ron,
In our tests, using the Start New Page feature gave the effect you are after.
The Group.NewPage feature ("Start New Page") does not (should not) break to a new page for the first iteration of the group. In our tests wi… -
Hi Ed,
It's likely that the template you are attempting to load has become corrupt in some way. Try opening it and re-saving as ASCII text, then opening in Notepad to see if there are any outlier values.
If you would like to s… -
Hi Mayerlin,
The page width is controlled by the Report.PrinterSetup.PaperWidth property. There is no built-in feature to automatically increase the paper width based on the space used.
It is possible to alter the PaperWidth p… -
Hi Marcano,
The DBText component does not stretch vertically. Try using the DBMemo instead.
-
Hi Ivan,
In the future, please provide the line(s) of code that fails so we can understand what your application is trying to accomplish.
Copies likely refers to printer copies which is the Report.PrinterSetup.Copies property f… -
Hi Julien,
Thanks for the feedback. I'll add it to our list of possible enhancements.
-
Hi Steven,
The issue with mousewheel in the preview is focus. The previewer consists of numerous controls, all gaining and loosing focus as a user interacts with them. The OnMouseWheel event will only fire for the "focused" control when… -
Hi Rajeev,
In my quick testing with the EndUser demo, the ListView.ItemID and ListView.FolderID returned the correct values when an item is selected in the Report Explorer.
Please provide more information about what you are try… -
Hi Mario,
Thank you for upgrading. In my quick testing, exporting a PDF file to a memory stream did not show any memory leaks using FastMM.
1. How are you detecting a memory leak? Are you using FastMM or another memory manage… -
Zooming in the designer was added for later version(s) of ReportBuilder. Please consider upgrading.
-
Hi Steven,
NativeUInt is defined for Delphi 7 but after a quick google search, it has been known to cause problems.
NativeUInt is equivalent to Cardinal so that would be a more appropriate replacement.
I will update … -
Hi Andrew,
If you are making a call to Report.Print on a loop and need to perform an operation for each report, you can try using the Report.AfterPrint event.
From your description, it appears you may have a Master-Detail relat… -
Hi Andrew,
I believe a bit more information about your exact requirements would be helpful in recommending a solution.
1. What would you like to happen during "doStuff"?
2. As I mentioned before, ReportBuilder is con… -
Hi Andrew,
The DataPipeline.GetFieldValue is not guaranteed to fire only once (or a certain number of times) per record. ReportBuilder is constantly moving forward, backward, and repeatedly retrieving data in a dataset to facilitate page… -
Hi Dirk,
We have not heard of this issue before.
Try commenting out all event/RAP code to see if that is causing the problem. Also try is disconnecting the report from data.
Another suggestion is to create a simple … -
Hi Thomas,
OutOfResources errors can be caused by a number of items including memory leaks, graphics drivers, and insufficient memory for an operation.
1. Which version of ReportBuilder are you using?
2. Looking at t… -
Hi George,
This could be a possible solution however it seems like a lot of work to parse the template source.
Hi Ed,
The next test would be to create a minimal ReportBuilder app (Report/Designer on a form with a button) and test that with your environment. If this functions correctly, there is likely an issue with your main application causing t…Hi Timo,
This issue has been fixed for the latest version of ReportBuilder. Please consider upgrading to obtain this and numerous of other fixes and enhancements since RB 19.
Hi George,
Parameters are only supported in the main report and are not currently transferred from loaded templates into subreports. In our testing, we found there was an AV when trying to load a template with parameters into a subreport…Hi Tailor,
This is not a known issue with RB 21. As a first test, check for a threading issue by setting the PreviewFormSettings.UseBackgroundThread property to False and see if that helps.
If not, we are going to need a simpl…Hi Paolo,
1. ReportBuilder does not support splitting images across pages. This is something that will need to be done in an imaging software or library.
2. The page summary prints for each page. If I understand correctly, yo…