nicocizik
Comments
-
Hi Giuseppe,
This is currently a restriction of the RTF format that ReportBuilder exports to for .DOC files. RTF does not support having graphics and text in the same "layer". Graphics are given a static pixel location where as Text is … -
For reference, this question has been answered in the following thread.
http://www.digital-metaphors.com/forums/discu… -
Hi Scott,
You can try using the FileDevice.OnEndJob event to know when each file has been created.
What exactly are you trying to do after each file is created? Perhaps more information about what you are trying to accomplish … -
Hi Scott,
The TppEmail class requires a report to send an email. If you would like to send and email without a report, you will need to manually create a TppEmailMessage object and TppSMTP class, assign the EmailMessage properties and Tp… -
Hi Steve,
This is not a known issue. Which version of ReportBuilder and Delphi are you using? Have you tried changing printers?
-
Hi Scott,
The email feature consists of three main classes: TppEmail, TppEmailMessage, and TppSMTP... plugin(s).
The Email class exports the report, creates a message, and sends the message using the desired plugin. It is poss… -
Hi Martin,
Which PDF viewer are you using? In my testing (with my test PDF I created earlier) and Adobe Acrobat DC, altering the text of the first form field does not have an effect on the other form fields.
If you are referri… -
Hi Martin,
As a quick test with RB 19.01 I placed a form field in the detail band of a simple report and it exported the editable form field to every detail band printed.
Is your report connected to any data? By default all re… -
Hi Scott,
Group email does not use the TppEmail object to send. A separate SMTP plugin is used by the file device to send each group individually as it is generated to file. You will need to set up this plugin similarly to the way you d… -
Hi Scott, (Quote) Correct, only one email plugin can be registered at a time. Adding a single plugin reference to the uses clause will automatically register it for convenience however adding multiple will only register the last one loaded.
… -
Hi Jan,
Thanks for pointing this out. We will update the Readme.doc file for the next release. The updated link is as follows.
http://www.di… -
Hi Scott,
The REST plugins extensively use the Delphi RESTClient features which were introduced for Delphi 10 Seattle. Therefore the plugins are only included for this or later versions of Delphi.
It is possible to use our Ind… -
Hi Scott,
You can manually register and un-register email plugins in code using the TppSMTPPlugIn.RegisterClass and TppSMTPPlugIn.UnRegisterClass in the ppSMTPCustom.pas file respectively. See the following article and example for how th… -
Hi John,
Unfortunately we do not know of any utilities that perform this task. One option would be to save your report to a template file as ASCII text, then perform a search on that file for the field names in your DB table. The field … -
Hi John,
Thanks for the clarification. Currently you can add and remove calculated fields in the Query Designer by double clicking them (double click in the top panel to add, double click in the bottom panel to remove). We have added to… -
Hi John,
Which version of ReportBuilder are you using? ReportBuilder 13 is not a version we ever released.
Are you using a registered copy of ReportBuilder and Delphi or are you using ReportBuilder built-in to a separate appli… -
Hi Al,
Which version of ReportBuilder are you using? This was an issue that was fixed for a much earlier version and in my testing with the latest version, I was able to successfully export to alternate file extensions.
-
Hi Lori,
ReportBuilder does not natively support image rotation. We will consider adding this for a future release.
-
Hi Ralf,
Thanks for the clarification. I was thrown off when you said in your second post that the "RAF file itself was OK". The pages inside the RAF file are OK but the RAF file itself is invalid when over 2GB in size.
Just … -
Hi Igor,
There is a patch available for RB 19.01 that solves this issue. All registered users with an up-to-date subscription can email support@digital-metaphors.com to re… -
Hi Ralf,
This appears to be a design limitation of the archive feature. We have already added this to our list of items to research and enhance for a later version.
I'm a bit unclear about your description. The table becomes … -
Hi Maciej,
The Chart.Tools property and class are not currently exposed to RAP. You will either need to add RAP RTTI for this class or create a pass-thru function.
We will add this to our list of possible enhancements for a la… -
Hi Steve,
The only "custom" aspect I see in your code is the ReportFilter property. I would need more information about this to understand what it does.
All other aspects of your code can be achieved with the built in PDF dev… -
Hi Ralf,
This is not a known issue. Which version of ReportBuilder and Delphi are you using? Are you able to recreate this with a simple example?
-
Hi Steve,
In short, yes
.
ReportBuilder currently contains built-in support for the following … -
Hi Ralf,
Thanks for the suggestion. We will add this to our list of possible enhancements to be researched and possibly implemented for a later release of the product.
-
Hi Francesco,
Report parameters are objects of the TppParameter type which is why you are getting the error.
If you are having issues compiling in RAP, I suggest trying your code in Delphi first so you can use features such a… -
Hi Francesco,
As a rule of thumb, it is best to get your code working in Delphi before trying it in RAP.
If you are accessing the subreport from the main report, you need to use the Subreport.Report property to gain access to t… -
Hi Paul,
The Query Designer was designed to give advanced users direct access to the database. Therefore all errors returned are errors returned directly from the database (some better than others). The Query Wizard was designed with a …