nicocizik
Comments
-
Hi Bora,
Another option might be to extract the signatures into a data structure
such as a string list. Then using a JITPipeline you could display the
signatures in reverse order on the report. If there are less than three <… -
Hi Bora,
ReportBuilder does not support right to left column traversal.
Are the signatures inside a dataset? If so, you could reorder the
dataset using a query so the third signature traverses first.
-
Britain,
You have not answered my questions from my previous post
.
Generally when an error is encountere… -
Do you see this behavior with every report you try to export (even a
minimal blank report)? Is there a certain component type on the report
that causes this issue?
-
Hi Britain,
This is not a known issue with RB 12. Do you see this behavior with
every report you try to export to PDF (even a minimal blank report)? If
you try to export to a different file type such as RTF, XLS, or Text, do… -
Thanks David,
I'll take a look at your example and get back to you via email as soon
as possible.
-
Hi David,
I do not see anything wrong with your code below. If possible, please
send a simple Delphi application to support@digital-metaphors.com in
.zip format I can run here that demonstrates the range check error and
This is a known issue and will be fixed for the next release of
ReportBuilder (14.03).
Hi Mike,
Are you seeing this when showing the report on screen, printing,
exporting to file, or all of the above? My first suggestion would be to
upgrade to RB 14.02 and see if that solves the problem. If not, please
s…Hi Bernd,
The preview does not have the capability of selecting text like you
would in a text editor. It is essentially just a rendering of the
report output.
That being said, it is possible to add an OnDrawCommand…Hi Greg,
Staying within the memory and processing capabilities of the machine you
are using, there is no set limit to the number of controls that can be
placed in a report band.
1. Which version of ReportBuilder are you using?
2. If you create a new application with an empty report and enable the
PageStyle, are you able then to see any components drawn when previewing?
Hi Trevor,
My suggestion would be to place the vertical lines in a PageStyle (Page
Layer) band so they always print from the top to the bottom of the
report. The PageStyle can be enabled by adding a new page layer (RB 14)
Hi Lane,
I would not recommend using a DBCalc to make any other calculations.
Use a TppVariable instead. Perhaps, store the value calculated by the
variable in a class variable and then (during the second pass) access
t…Hi Lane,
Is this a two-pass report and are you taking advantage of the Lookahead
feature?
Accessing the value of a DBCalc can be difficult as it is calculated
internally. The best option would be to place a TppVari…Hi Trevor,
The display format of a DBText is dependent on the type of field that is
being accessed. If you have a DateTime field, then placing the "dd mmm
yyyy" display format should function correctly. (You can test this by…Hi Petr,
This was an issue in RB 14.02 and was fixed for RB 14.03. I just tested
it to function correctly with a minimal application. Are you certain
you are using the latest version of ReportBuilder?
Hi Tim,
The DisableControls property essentially prevents data-aware controls
from updating every time the active record changes. If you are using
datasets for your report(s) that were created to handle other aspects of
Hi Tim,
Setting the SinglePageOnly property to True simply reverts back to the
older RB 12 and prior Viewer/Screen Device (one page at a time).
For RB 14, the Screen Device was completely redesigned to handle
proces…Hi Philip,
Are you able to recreate this behavior with the End-User demo included
with ReportBuilder? In my quick testing, I was unable to produce this
issue.
If you are, please provide me with the steps I can take…Hi Harry,
I would recommend taking a look at the main end-user demo located in the
\Demos\3. EndUser\1. Report Explorer\ directory. All of the reports in
this demo use DADE to create their datasets and many of them take
Hi Harry,
Are you using a registered copy of ReportBuilder or another application
with ReportBuilder built-in?
This is more of a SQL question rather than a report one. If you are
using the data workspace to access …Hello,
We will still provide the patch for the trial version if you would like
to test it.
Hi Bas,
Take a look at the Canvas.FillPolygon or Canvas.FillPath.
Hi Denise,
Creating a TppPageBreak component is similar to creating any other
report component in code. You simply create the component and assign
it's Band property and location.
I do not believe you will need to …I apologize for the misunderstanding. By "later release" I meant an
upcoming maintenance release (hopefully 14.05).
The new viewer/preview was a complete re-write from the old one. We
worked diligently to include all the fea…Hi Stephan,
You are correct. We will try to get this added into the next release of
ReportBuilder.
Hi Chau Chee,
You can manually create a TppTextSearchPreview object and assign its
Viewer property. It also needs a panel to reside in. Below is some
sample code.
lTextSearchPreview := TppTextSearchPreview.Create(…For the second issue, it may be that I'm using RB 14.03 that it
functions correctly. How does 14.03 break a report? Are you receiving
an error? Can you send an example?
If so, please send the example to support@digital-meta…Hi Chris,
The definition of a two pass report is that the data will be traversed
twice. The first pass is just to measure pagination and make
calculations. The second is to actually draw the report. If you need
to loo…