nicocizik
Comments
-
Hi Steve,
If you just need to hide the detail band for certain field values, you
can toggle its visibility (or toggle certain components' visibility)
inside the DetailBand.BeforePrint event.
begin
Report.Det… -
Hi Heather,
Are you using a registered copy of ReportBuilder or a version built-in
to another product?
ReportBuilder simply traverses the data it is given. Even if you were
to hide a group that didn't meet the spec… -
Hi Robert,
I performed a quick test with the latest version of ReportBuilder and
was successfully able to add a PageBreak component to a report in RAP code.
procedure ReportBeforePrint;
var
lPageBreak: TppPag… -
Hi Steve,
If you are tying to simply hold values, there should be no reason to
create full TppVariable components. Simply use a global declaration
instead.
If you would like to create TppVariable components in RAP,… -
Hi Robert,
The following example shows how to write checks using ReportBuilder and
employs a small library to convert numbers to words. We have not tested
it with RAP but it might be of some help.
in Currency to words in RAP is it possible Comment by nicocizik July 2015 -
Hi Phil,
The issue is the timing of when the OnCalc event of the vrEndingBalance
variable fires and the Variable1 variable. My guess is that if you
trace into the calc code for vrEndingBalance, gRunningBalance is 0.
Hi Fabio,
RAP does not support the 'in' command however it does fully support case
statements.
case of
1, 2, 3: //Execute Calculation
else
//Execute Calculation
end;
Another option would be…Hi Ken,
The solution Paul gave is a great example of extending the RAP RTTI.
It is also possible to create a RAP pass-thru function to perform the
same task. You could create a pass-thru function named
PipelineNext…Hi Philippe,
This is a timing issue for the first group. When the first
OnGetFileSuffix event fires, the report has already begun generating to
PDF and therefore it is not possible to alter its settings at that time.
Hi Ian,
If you would like a memo-like control, I suggest populating a TppMemo
from the OnCalc of a TppVariable rather than using the TppVariable
itself. Variables are not meant to act as memos.
1. The Variable comp…Hi Ian,
We are not aware of a RAP library that includes functionality beyond
what is already provided.
The RAP demos do show how to add some useful function calls.
If you have any requests for functionality tha…Hi Ian,
You can access report parameters in RAP similar to the way you would
access them in Delphi, using the TppReport.Parameters property.
in Parameter in RAP? Comment by nicocizik January 2016Hi Jianfei,
Which version of ReportBuilder and Delphi are you using?
Are you trying to find this information from RAP?
Hi Jianfei,
Which version of ReportBuilder and Delphi are you using?
Are you trying to find this information from RAP? If so, have you tried
using the AfterPrint event?
Hi Ignacio,
Unfortunately the pipeline events in RAP fire too late to successfully
alter the TextFileName. You will need to use an earlier event such as
the OnInitializeParameters if you would like to change this property.
Hi Paul,
Try accessing the group footer band directly (either by dragging from
the code toolbox or directly). For instance:
GroupFooterBand1.Visible := False;
Moving forward, we hope you will consider upgradin…Hi Klaus,
Which version of ReportBuilder are you using? Using RB 17.02, it is
possible to toggle the Stretch property of a Region.
Looking at your requirements, it appears you would like the first region
to grow (s…Hi Klaus,
One option would be to place an empty static region between the second
to last and last regions (shift relative to). This would ensure the
final two regions are always spaced apart.
Hi Goran,
My suggestion would be to create a separate query that pre-processes
your data and contains the information you need to display in Group 4.
This way, you can directly access that information as you need to print
Hi Ignacio,
Yes, all patches for RB 17.02 are included in RB 17.03.
Hi Guillermo,
Each parameter contains its own AutoSearchSettings. Disabling these by
setting the AutoSearchSettings.Enabled property to False should give you
the effect you are after.
Moving forward we hope you wil…Hi Thomas,
Which version of ReportBuilder and Delphi are you using?
Also please let us know which DB and connectivity you are currently using.
--
Hi Thomas,
ReportBuilder contains the built-in capability to re-order the dataset
as you need. It appears the developers of your product have restricted
it. You will need to contact them for further support.
-----…Hi Stef,
I'm assuming you are going to give you users various options before the
report prints. In doing so, you will want to create separate report
parameters for each of these options so they can be accessed in RAP
co…Hi Jon,
Please disregard my previous post. StringReplace was added to RAP for
RB 15 so it is available for the latest version of ReportBuilder.
I apologize for the confusion.
--
Hi Jon,
I will add StringReplace to our list of possible enhancements for RAP.
Currently you can create a pass-thru function that calls StringReplace
in Delphi. See the RAP demos for pass-thru function examples.
There is a patch available for this issue. Please send an email to
support@digital-metaphors.com requesting it and we'll send it to you.
--
Regards,
Nico Cizik
Digital Metaphors
in Problem make some report as .Pdf with the Server Comment by nicocizik February 2005Hi Roberto,
If you are trying to print images from the web tier, you are experiencing a
known bug. This will be fixed for the next maintanence release of
ReportBuilder.
--
Regards,
Nico Cizik
…Hi Ignacio,
I just tested all the server trial links and they work correctly. Go to the
following web page and select the version of Delphi you are using in the
combo box, then click "Go".
in Upgrade + Trial Comment by nicocizik July 2009