nicocizik
Comments
-
Hi Carsten,
I'm sorry but I do not understand the problem. At runtime, if you would
like to use/edit Crosstabs, you need to add ppCTDsgn to your uses clause
to register the component/editor.
Are you saying that you… -
Hi Carsten,
You need to add ppCTDsgn to your uses cause.
http://www.digital-metaphors.com/rbWiki/End-User/Fundame… -
Hi Samuel,
For later versions of Delphi (including XE7), it is necessary to build
and install the dcl...dpk packages into the Delphi IDE to ensure they
are loaded when Delphi is restarted.
In your setup you will wan… -
Hi Eug,
See the following article on how to register report components at runtime.
http://www.digital-metaphors.c… -
Hi Arnaud,
ReportBuilder does not natively support the TMS RichText Editor.
If you are simply trying to display the RTF output inside a report, you
could see if the TMS component allows rendering as an image (metafile), <… -
Hi Jeroen,
I sent a small example demonstrating this to your email.
-
Hi Jeroen,
Memos in ReportBuilder by definition are word wrapped controls only.
One option would be to add each separate line of your memo to individual
TppLable controls with AutoSize set to False.
Another wou… -
Hi Sergio,
See the following article on how to detect if a user printed to the
printer. Once this occurs, you should be able to restrict the data your
user has access to.
in Control printer output Comment by nicocizik January 2017 -
Hi Alex,
Thanks for the further information about your requirements. I suggest
trying to use the TppViewer.OnEndGenerate event to know when the
threaded page cache has finished processing pages. Try placing the
GotoPag… -
Hi Mario,
This is not a known issue. Please create a simple example showing this
behavior using only Delphi and RB components and send it to
support@digital-metaphors.com in .zip format so we can test it with the
latest… -
Hi Andrew,
Are you able to recreate this with a simple new project or is this only
happening with existing applications?
If not, perhaps you can simplify your existing project so that I can see
this behavior and sen… -
Hi Zoran,
ReportBuilder 18.0 was built with Rad Studio Berlin 10.1 Update 2 and is
used here daily with this version.
Update 2 was a non-breaking update so all versions of ReportBuilder that
support Berlin should fu… -
Hi Mario,
Your code appears correct. Check the ResetType property and be sure the
value is not being reset at the incorrect time.
If you are still having issues, you can send a simple example
demonstrating this pro… -
Hi Mario,
Which version of ReportBuilder and Delphi are you using?
One option is to simply place a TppVariable inside the group footer
band, then update its in the OnCalc of the variable in the detail.
Value :=… -
Hi David,
The RB installer/uninstaller relies on some of the registry keys defined
for Delphi to operate. Since these keys are now removed, you can
manually remove RB from your machine.
See the following article on… -
Hi Ian,
Thanks for the suggestion. I will update the doc(s) for the next release.
--
-
Hi Carsten,
This is not a known issue.
My suggestion is to trace into your TReportConverter class and see
exactly what is happening.
Also, starting with RB 18, we added the TppTemplate.OnConvert event
whi… -
Hi Ian,
This is what the preview is for
. Using the OnNoData event, you could
print to screen first, then giv… -
Hi Mark,
Which version of ReportBuilder and Delphi are you using?
I would start by commenting out all event code for this specific report
and seeing if the issue still occurs. Then gradually add it back to
isolate … -
Hi Mark,
I have tried sending an email to your posted address but it keeps
getting rejected by your server with the following error.
554-Bad DNS PTR resource record.
If there is an alternate email we can use, p… -
Hi Chau Chee Yang,
We do not provide a graphical way to alter the PDF settings other than
the print dialog and the report designer (inspector). Thanks for the
feedback, we will consider something like this for a later release… -
Hi Chau Chee Yang,
Setting the EmbedFontOptions set to an empty value will prevent fonts
from being embedded in the PDF for ASCII font encoding.
Unicode font encoding requires font embedding.
in Setting TppReport.PDFSettings.EmbedFontOptions to empty has no function Comment by nicocizik March 2017 -
Thanks for the feedback. We will consider adding an option for a later
release.
--
-
Hi Eug,
The HTML device uses the TppXHTMLUtilities.IsStandardWebFont routine
located in the ppXHTMLUtilities.pas file to determine if the text will
be rendered as an image or text.
Using the fonts defined in this ro… -
Hi Ian,
In my tests with Delphi XE2 and the latest version of ReportBuilder, I
was unable to recreate this behavior.
Perhaps try downloading and installing a trial copy of RB 18 and see if
the problem still occurs. … -
Hi Erez,
The Producer is hard coded and therefore not editable. Technically
ReportBuilder is the Producer and Creator of PDF files exported
according to the PDF reference specs.
--
-
Hi Garry,
Correct.
ReportBuilder
Excellent! Pre-processing your data is the best way to go about this to
ensure your report(s) run smoothly.
--
-
Hi Garry,
The issue with the second approach is timing. The only time (event)
that you could possibly cancel the report before the print job has
already started is the OnInitializeParameters event.
This event howev… -
Hi Garry,
The best option in your case would be to prevent calling Report.Print if
the certain data condition is met to skip printing that report. This
would involve analyzing the data before the label is printed to be sure <…