nicocizik
Comments
-
Hi Andi,
ReportBuilder uses the reserved word lists located in the
daSQLReservedWords.pas file to determine whether a word is reserved or not.
If you are using Firebird, your database type is daInterbase and the defined
… -
Hi Luc,
At what point are you getting the error (i.e. where are you clicking on the
datapipeline)? Is this at run time or design time that you are opening the
designer? When you assign a pipeline to a report, the pipeline si… -
Hi Albert,
Take a look at demo 112 located in the \RBuilder\Demos\1. Reports\...
directory. This demos shows how to use bookmarks to allow users to select
certain records from a list.
--
Regards,
N… -
Hi Ali,
In this case you can either loop through each component in the band, setting
the visibility property of each or manually ses the visible property of each
DBText.
---------------------------------------------… -
Hi Ali,
Your best option would be to use an event such as the DBText.OnPrint or
Band.BeforePrint to determine the field value then toggle the visibility of
the component based on that value. For instance...
DBText.… -
Hi Jos,
Be sure the Group.NewPage property is set to False. This will prevent the
report engine from starting a new page each time the group ends.
--
Regards,
Nico Cizik
Digital Metaphors
Ali,
Please post using your real name in the "from" field when using these
newsgroups. "ali110" is not an acceptable posting name.
Please provide us with your environment specifics such as the version of
Delphi, Re…Hi Guy,
The nice thing about JITPipelines is that if gives you complete control over
how you access your data from virtually any resource. Take a look at demo
139 located in the \RBuilder\Demos\1. Reports\... directory for an…Hi Barry,
There is never a need to add units to the "uses" clause in RAP. The
gMetaDataManager however is not available in RAP and would either need to be
accessed from an event in Delphi or called through a RAP passthru func…Hi Russell,
We are not aware of anyone that has updated the TppIBOPipeline for RB 11 and
Delphi 2010. You might try contacting the original developer to see if they
have made any updates recently. Otherwise, hopefully anothe…Hi Russell,
If you would like to use IBO with the data enviornment of ReportBuilder
(DADE), all the necessary files are included in your installation. Take a
look at the IBO demo located in the \RBuilder\Demos\4. EndUser
Hi Perry,
Thanks for your interest in ReportBuilder!
If you run the report without altering the SQL code of your query does the
data print as expected? How is your data connected to the report? Are you
using datap…Hi Chantal,
I would suggest using the JITPipeline to access your data. The JITPipeline
can essentially gather data from any datasource because it is completely
customizable in how it retrieves data. Take a look at the "no da…Hi Juliano,
1. Which version of ReportBuilder and Delphi are you using?
2. How are you loading images? Are you manually loading them from the
database into a TppImage component or are you using a DBImage component on <…Hi Benny,
For future reference, please use your real name when posting to these
newsgroups.
It sounds like the date_selected parameter is not being set to the proper
value as the report prints. Where are you settin…Hi Mark,
Try creating a main report containing only a detail band. Inside the detail
band, place two Section style subreports. Each subreport will represent a
single page of your report and can have separate Page Styles for …Hello,
We prefer that you use your real name rather than your company name when
posting to these newsgroups. Please see #1 of the Newsgroup Guidelines.
Hi Benny,
For future reference, please post using your name as the sender (instead of
"trisoft").
ReportBuilder simply prints the data it is given. It sounds like the
parameter is not being applied when the report …Mark,
In the future, for a new topic, please start a new thread. This helps us
separate questions and others find answers easier.
A section subreport acts as a completely separate report within the main
report. Yo…Hi Mark,
Use the TppDetailBand.PrintCount property to limit the number of rows per
page.
--
Regards,
Nico Cizik
Digital Metaphors
http:/…Hi Dan,
Which version of ReportBuilder are you using?
How are you calculating the total values? If you are using TppVariables,
you need to be sure you make all calculations inside the OnCalc event.
Try setting…Hi Dan,
How are you separating the detail and summary pages? If the summary page is
the last page in the report, you could simply create a two pass report and
inside the Band.BeforePrint, toggle the visibility of the column h…Hi LP,
Yes, this should be possible using a TppVariable component and RAP code.
Simply update the value of the variable as each relevant record is
traversed.
-----------------------------------------
Article: E…Hi Julien,
I believe the DetailBand.BeforeGenerate fires too late to alter the dataset.
Try using a different event such as Report.OnIntializeParameters.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Leo,
Sorry for the delay, I somehow lost track of your post.
Yes, the easiest way to remove the notification from each component to the
pipeline would be to create a report object loop and "un-link" each
data-awa…Hi Sandor,
I believe the standard Arial Truetype font does not support Unicode. There
is a Arial Unicode MS font available. Perhaps this would give you the
results you are after.
in ppDBText in unicode Comment by nicocizik June 2009Hi Bas,
It is always possible to simply hide the band you do not want to display by
setting it's visible property to False. You could set up a flag field that
determines when a certain group's header and footer bands are allo…Hi Bas,
Where are you assigning the group break value. This needs to be done in the
Group.OnGetBreakValue event. Rather than manually trying to generate each
band, try letting the group handle it.
--
Regards…This question was answered in the General newsgroup. Please do not cross
post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metapho…Hi Dirk,
You could do something similar to the example below or perhaps use a
JITPipeline to take complete control over how the data is retrieved and
displayed.
in Minimum number of records... Comment by nicocizik July 2009