nicocizik
Comments
-
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… -
Hi Ed,
ReportBuilder uses the standard Delphi TOpenDialog to open files. In my simple tests, performing a simple File | Open from the designer in Delphi 7 does load the propsys.dll. I tested this with ReportBuilder 21, 20, and 19. All … -
Hi Josef,
The original question in this thread deals with temp files created by the threaded page cache for the report preview. It appears your issue deals with creating a PDF export and then accessing that file.
We do not hav… -
Hi Tom,
After a quick test (with Delphi and RAP code) the PrintDialog events appear to be firing correctly.
If you are loading templates, be aware that you will need to assign the events after the template is loaded or the refe… -
Hi Alpesh,
If possible, please send a template that causes this error to support@digital-metaphors.com and we'll take a look at what is happening.
-
Hi Thomas,
For archives, you will want to use the OnReadPage to add/remove drawcommands from the page object. Since archive files do not contain report components, you will need to add a drawcommand manually as needed. See the following… -
Hi Chris,
What verification software are you using?
Please create a simple example that I can test with here and send it in .zip format to support@digital-metaphors.com and I'll take a look at what is happening.
Hi Ken,
Try using the Extended MAPI plugin. This should allow sending emails "silently".
Enable it by adding ppSMTPExtendedMAPI to your uses clause instead of ppSMTPOutlook.
It also may be possible to adjust your Outlook …Hi Paolo,
Try using a TppPageBreak component inside the Summary band to manually break to a new page. If you need the summary band to begin on a new page, set the SummaryBand.NewPage to True.
Hi Dirk,
Yes, copying the stream data directly will also avoid any encoding issues and likely be faster than using an interim data structure.
I'm a bit unclear about your second question. What exactly are you storing to your d…Hi Dirk,
One item that stands out in your code is the use of a string to hold the file contents before adding it to the database. Strings in Delphi are Unicode encoded so your data is likely being converted.
I suggest using a …Hi Michael,
RAP source is not included with ReportBuilder.
In my testing with RB 21.02 and Delphi 7, the rbRAP217.dpk compiled correctly without errors. The error likely indicates that you have an older file present in your li…Hi Carsten,
In my testing the quiet zone of the Datamatrix barcode is functioning correctly.
Note that the QuietZone property is measured in Report Units. If your report units are something small such as mm or microns, a value…Hi Lisa,
Most of the source is not included with the trial version of ReportBuilder, only compiled .dcu files. The RB 21 dcu files are not going to be compatible with RB 16 source (pas) files so that is likely where the error is coming f…Hi Rhonda,
At runtime, you will need to add TeeEditPro to your uses clause to enable the series included with the Pro version of TeeChart.
At Delphi design-time, TeeChart inside RB is the same as placing a TeeChart on a Delphi …The daIBO plugin can be found in the End-User Database demos at the following location.
http://rbwiki.digital-metaphors.com/general/…Hi Mario,
You are using an outdated version of ReportBuilder. Please update to the latest version and re-test.
Hi Andreas,
Please send a copy of the image to support@digital-metaphors.com and I'll perform some tests here.
Hi Andy,
Calling Report.Template.New will not load the designer. You can try it with a minimal application. Check your event code to be sure you are not calling ShowModal after creating the new template.
Hi Lisa,
The error usually indicates that there is still an old .dcu being used when compiling your project. Try performing another search for all pp*.dcu, da*.dcu, and ra*.dcu files to be sure you do not have any old files in your libra…Hi Andy,
You do not need a designer to create a new template. You can simply call Report.Template.New; in Delphi codeHi Athenas,
The latest version of ReportBuilder (21.01) fully supports exporting to the XLSX format for Delphi XE2 or later. The two formats from the export dialog are "XLSX Report" and "XLSX Data".
In code:in Export large excel file xlsx Comment by nicocizik September 2021
Hi Andreas,
ReportBuilder does not convert Metafiles to other formats before displaying/exporting/printing them.
1. Which version of ReportBuilder and Delphi are you currently using?
2. Are you experiencing low quality out…Hi Mathieu,
One option is to change the theme of the designer to better match your needs. This can be done using the View | Themes option in the designer main menu.
In code, you can delve deep into the designer properties to a…Hi Andy,
The section of the template you have copied above is RAP code in a proprietary format we used for older versions of ReportBuilder. This format will be updated when you save the template again with a newer version of ReportBuilde…Hi Andy,
In order to convert your templates to use a different database connection, you will need to manually edit the source of each template (hopefully programmatically) to match the new dataview classes, tables, etc. See the following…