nicocizik
Comments
-
Hi Andrew,
ReportBuilder 7 did not support native emailing or export to PDF. Were you using third party libraries to accomplish these tasks with the older version?
I will need more information about your RB 7 app and the code … -
Hi Dustin,
The thread you found gives correct information on how to go about changing report templates to use a different DADE plugin (as it appears I wrote itin Convert/Migrate old RB v9 (.BRT) reports to RB v21 (.RTM) Comment by nicocizik March 2023
-
Hi Gustavo,
Older reports (templates) should be compatible with the latest version of ReportBuilder. This is a very large leap in versions so it may be necessary to re-write some of your event code and other report related code.
Hi Matthew,
Please consider upgrading to the latest version of ReportBuilder. The email feature has been enhanced over the years to support modern email servers.Hi Ken,
This has been added for RB 22. See the help topic for the TppShape.RoundRectRadius property.Hi Goran,
In a simple test, I am unable to recreate this behavior.
As my test case, I created a region with a memo at the top. Then I place two identical images side-by-side below the memo. One image had AutoSize set to Tru…Hi Rajeev,
In my testing with a simple example, the shortcut options are functioning correctly. Are you able to recreate this behavior with a similar simple app or when using our demos?
Please upgrade to the latest version of …Hi Tom,
There is a fix available that solves this problem. Registered users with an active software subscription can email support@digital-metaphors.com to receive the solution.Hi Robert,
Are you loading templates? If so, you need to be sure to set these properties after the template is loaded or they will be overwritten. Another option is to resave the template with the appropriate properties set.
Hi Yusuf,
We have not heard of this behavior by any other customers and are not noticing it when testing ourselves. Are you able to recreate this with a simple example? If so, please send it to me and I'll test with multiple versions of R…Hi Yusuf,
Perhaps someone will chime in, but we have not heard of this behavior with the latest version of ReportBuilder.
Hi Rajeev,
Converting from one connectivity to another can be difficult in some cases as it is usually not as simple as replacing a few class names.
1. Choose one of your existing BDE reports and recreate it by hand from an emp…Hi Yusuf,
This is not a known issue.
1. Are you using the latest version of ReportBuilder?
2. Which version did you notice the slow-down started? It would be helpful to get a time frame so we could track down any …HI Rajeev,
How did you migrate your reports from BDE to FireDAC? This would involve manually editing the template source to alter all the QueryDataViews to the proper connection plugin.
See the following article on how to migr…Hi Timo,
Are you able to recreate this on your machine? If so, please create a simple example using only RB and Delphi components and send it to support@ in .zip format and I'll research a solution.Hi Timo,
Due to the nature of how ReportBuilder renders to the screen, discrepancies can occur. Try changing your default printer driver and see if that helps the problem.
in Font size problem with TppMemo Comment by nicocizik January 2023Hi Rajeev,
The error implies no database has been assigned for the DADE plugin being used (FireDAC). You can either assign the database using the TppDesigner.DataSettings.DatabaseName property or in the File | Data Settings... menu optio…Hi Rajeev,
The Query Designer and Query Wizard will not display if no DADE plugin is registered. Adding the DADE plugin to the uses clause will make them available. (daFireDAC for example).Hi Dirk,
The Source directory is not automatically added by the RB installer so this is something you must have done yourself.
The directories added to the Delphi library path by RB are:
32 bit: ...\RBuilder\Lib\Win3…Hi Dirk,
The error usually indicates that you have an older .dcu or source file present in your library path. Since we do not provide the source for RAP, it is important to be sure the versions match up. Check your project folder for ol…Depending on the type of field value you are accessing with your DBText components, it is better to access the data directly from the database (pipeline).
Also, since you are making calculations, I suggest using the OnCalc event of a TppV…Hi Rajeev,
This issue is in your RAP code. An empty string '', is not a valid integer so when you make a call to StrToInt with an empty string, the error will occur. Check the value of the DBCalc(s) before converting them to an integer.…Hi Dirk,
The issue is the FormatSettings. This is the only reason this behavior will occur. Somewhere (or multiple places) in your code you are manually changing the DecimalSeparator. After this is done, you need to be sure to perform …Hi Dirk,
Please send the empty PDF file to me so I can see what is happening. If you could export the PDF with the compression set to clNone, that would be helpful.Hi Dirk,
Empty PDF files are generally caused by a corruption of the PDF source. The main reason we see this is when the Delphi FormatSettings are changed without syncing the ppFormatSettings. If you are changing the FormatSettings, be …Hi Adam,
Rather than assigning the FileName of the PDFDevice, simply set its OutputStream property to the memory stream you would like to write to (MS1).begin
MS1 :…Hi Adam,
The issue is that your merged archive data is held in the MS1 stream, yet you never assign it to the ArchiveReader after the loop.
Your code above merges multiple archives to a single archive, then exports that to PDF.…Hi Robert,
See the source for the supported TeeChart RAP RTTI in the ppChrt.pas file for all included routines/properties beyond the published ones.
Chart.ColorPalette is not currently supported for RAP however I will add it fo…Hi Steve,
Thank you for checking in. I checked and your message was received but for some reason it was sent to our junk folder. I will take a look at your example and get back to you as soon as possible.Generally the access token is valid for 1 hour. ReportBuilder stores this token in memory so it is lost once the application is closed. It is on our to-do list to add a feature automatically saving the access token to disk once it is obtained. Th…