nicocizik
Comments
-
Hi Ed,
We are able to recreate this issue and are currently researching a solution.
I will post here once a fix is available.
-
Hi Ken,
Sorry for the late reply. We are currently working on a solution.
For now, you should be able to change your library path to
\RBuilder\Lib\... rather than \Source\ to build your applications.
-
Hi Carsten,
The Report.Device property was deprecated and support for it was
discontinued in RB 4.0. It is only retained for backward compatibility
with very old reports.
Please only use Report.DeviceType when dete… -
Hi Ed,
This is not a known issue. Below are a couple tests to try to isolate
the problem.
1. If you print directly without going to the preview first, do you
still get this intermittent behavior?
2.… -
Hi Chau Chee,
This issue in this thread dealt with multi-page subreports in the
summary band with their ResetPageNo property set to True. Setting
Subreport.ResetPageNo to False solved the problem.
If you are experi… -
Hi Carsten,
This is not a known issue and I am unable to recreate this with a
similar report design in the latest version of ReportBuilder.
1. Where are you displaying the page count (i.e. which band)?
2. Are y… -
Hi Hüseyin,
The ppFormatSettings property is used internally by ReportBuilder and
needs to be kept in sync with the Delphi FormatSettings. Currency
values however will use FormatSettings to determine currency formatting.
Hi Hüseyin,
Take a look at the following article on how currency formatting
currently functions in ReportBuilder and how to alter it to meet your needs.
in Displayformat without rounding.. Comment by nicocizik February 2016Hi Mark,
The 64 bit language resource .dll files are for use with 64 bit
applications only. If you are creating 32 bit applications, you will
need to use the standard 32 bit language files.
Hi Ralf,
CreateFontPackage is a Windows API routine we use to generate valid font
subset files to embed in PDF files to reduce space. From past
experience we have found that this routine is very picky about the fonts
it…Hi Andy,
Yes, Datamatrix barcodes generated with ReportBuilder are ECC 200 compliant.
Hi Bill,
All updates and changes can be found in our release notes posted on our
website. Bug fixes can be found in our announcement posts and in the
Announcements newsgroup.
in dynamic filling of grids in subreport multiple use Comment by nicocizik February 2016Hi Bill,
Which version of ReportBuilder and Delphi are you using?
I assume you have keeptogether set to True for the subreport? If this
is the case, are you able to recreate this behavior with a simple example?
Hi Bill,
I apologize, after re-reading your post, I think I misunderstood your
original design/requirements.
If I understand correctly you are using a ppTableGrid component in your
subreport and would like to show/h…Hi Bill,
An ideal solution would be to create a separate query for each "summary"
and connect those queries to separate subreports so ReportBuilder does
the work of populating your grid(s).
Even though all the data …Hi Andy,
The current implementation of Datamatrix in ReportBuilder does not support
GS1. Simply adding the #232 character to the beginning of the data string
will not work due to the fact that the underlying software needs to…Hi Bill,
1. You need to call TppChildReport.CreateDefaultBands in order to properly
create and access its detail band. This is in the rbWiki article code.
2. Once you've created the default bands, you can use the
T…Hi Bill,
This is not a known issue. Please create a simple application that
demonstrates this behavior and send it to support@digital-metaphors.com
in .zip format. We will test it with RB 12 and the latest version and
…Hi Steve,
Please create a simple example using RB and InfoPower and send it in
.zip format to support@digital-metaphors.com and we will take a look.
ReportBuilder converts RichText to a metafile, then uses its built-inHi Adam,
The design you have is more of a "nested" group structure rather than
two separate groups working independently as you need. If you need to
use an individual group for breaking pages, you may need to move it (as
Hi Adam,
You can use the CreateCompatibleDrawText routine of the TppDrawRichText
class to gain access to the underlying text of a rich text component.
For example, you could change the PageReceive event to the following..…Hi Adam,
After looking into this further, the TppViewer has a passthru
OnPageReceive event that can be used so there is no need to access the
screen device or set SinglePageOnly to True.
uses
ppViewr,
…Hi Adam,
The best place to retrieve all text in a report would be the
Device.OnPageReceive event. From there you could loop through all
TppPage.DrawCommands and save all text needed. Unfortunately with the
current desi…Hi Howard,
Use the Report.OnPreviewFormCreate event to change the TPosition and
location of the preview form using the Report.PreviewForm property.
For instance...
procedure TForm1.ppReport1PreviewFormCreate(Se…Hello,
For future reference, please use your real name in the "From" field when
posting to these newsgroups.
ReportBuilder 17 includes the latest update of our FMX REST client and
server components. This allows you…Hi Adam,
Thanks for the feedback. We will consider changing the behavior of this
control for a later release.
Currently you can use the Report.TextSearchSettings.DefaultString
property to customize the initial sear…Hi Paul,
One option would be to export your report to an Archive and
preview/print/export/email from there. This way you are only actually
generating the report once (accessing data, generating pages and
drawcommands). …Hi Yusuf,
This is on our list for possible enhancements for a later release.
Thanks for your feedback.
Hi Scott,
In addition to all calculations being done in the OnCalc event, all
calculations should be done with TppVariable components as well.
In your case, my guess is that you have a dynamic height detail band.
In…Hi Scott,
Do not make variable calculations in the DetailBand.BeforePrint. This
event can fire multiple times per traversal which in turn can give
incorrect results.
When making calculations inside ReportBuilder, o…