nicocizik
Comments
-
Hi Adrian,
In my testing with Windows Vista and Windows Mail as my default email
client, the code you posted below functioned correctly bringing up a email
window with two attachments and a message in the body. If Windows Mai… -
Hi Hans,
You will most likely need to dynamically adjust the print position of the
group footer in order to get it in the proper position for each page. Take
a look at the following article and example for more information. … -
Hi Hans,
This is not a known issue. The only way the header band will not show up in
a report is if there is event code somewhere toggling its visibility or it
is placed inside a Child subreport.
--
Regards,<… -
Hi Bruce,
Images can be rendered transparent using the Transparent property of the
TppImage component. What type of images are you using?
--
Regards,
Nico Cizik
Digital Metaphors
in images and tranparency Comment by nicocizik December 2008 -
Hi Josef,
Which version of ReportBuilder are you using? We have made some
enhancements for recent versions that address some of these issues.
--
Regards,
Nico Cizik
Digital Metaphors
in Infinite Pages Comment by nicocizik December 2008 -
Hi Jesus,
Take a look at the following article...
------------------------------------------------------
Article: TroubleShooting: Report Prints Endless Pages
------------------------------------------------------
Hi Ken,
Try setting Report.CachePages to True.
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Ken,
The example is virtually the same if you are using DBPipelines on a form.
You will create a new dataset (TDataSet descendent) that contains the count
of records and connect it to a new TDataSource and TppDBPipeline. T…Hi Ricardo,
Try using the DetailBand.PrintCount property to control the number of
records printed per page.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Alex,
I answered your question in the Devices newsgroup. Sorry for the delay.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-…Hi René,
Be sure you are using the latest version of ReportBuilder (11.02). The
ppSynEdtWordWrap.dcu should be already located in the \RBuilder\Lib
directory so there should be no reason it should be recreated. Check to see …Hi Tom,
When using lookahead values, the value is calculated during the first pass
of the report, and then used during the second pass. It seems for some
reason, for the first group, the total calculation is not accumulating …Hi Tom,
Which version of ReportBuilder and Delphi are you using? Try tracing into
the OnCalc event and see what values are being used for the first firing.
My guess is that the total lookahead value is incorrect for some reas…Hi Tom,
Take a look at the following rbWiki article on making calculations with a
lookahead value. Perhaps this will help you get the correct value.
in Footer Calculation Anomaly Comment by nicocizik January 2009Hi Jak,
What are you ultimately trying to accomplish with your application? Unless
you are trying to call your report from another environment we recommend
using the Delphi package architecture rather than dll's.
A…Hi Ian,
----------------------------------------------
Tech Tip: RAP: Checking for Null Data Values
----------------------------------------------
The DataPipeline.FieldObjects[] array property provides access to the …Hi J-Pierre,
Try re-downloading RB 11.02 and re-installing. We recently uploaded a new
build that may solve the issue.
If this does not fix the issue, please send a simple example in .zip format
to support@digital-…Hi Ken,
In my testing with the latest build of RB 11.02, I was unable to recreate
the error after creating a simple report explorer plugin and using code
similar to yours. Are you able to recreate this using a simple, minimal…Hi Ken,
Are you able to see where the AV is occuring? If you set your library path
to RBuilder\Source\... you should be able to trace into the ReportBuilder
source where the error occurs..
--
Regards,
Hi Frederic,
There is no built-in feature to force smaller capital letters in
ReportBuilder. I believe there are some special fonts available that offer
block lettering. Otherwise, it is possible to simply start a sentence w…Hi Jeroen,
As a general rule of thumb, when a variable is printed at the end of a
group, reseting it at the group end would give the best chances of success.
Working with calculations across groups and subreports can be tricky…Hi Tim,
Try placing the subreports inside a TppRegion with it's KeepTogether set to
True.
--
Regards,
Nico Cizik
Digital Metaphors
http:…Hi Chris,
I apologize, I completely miss-read your initial post/topic.
It is not possible to alphabetize the data output from the calc tab in
ReportBuilder. This would need to be done to your dataset before
ReportB…Try using the OnPrint event and the UpperCase(); routine.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Edwin,
Take a look at the following section in the rbWiki which gives all sorts of
information about how to manipulate the built-in previewer.
in Adding Buttons to Print Preview Comment by nicocizik January 2009Hi Rob,
In my quick testing with the latest build of RB 11.02, the
OnInitializeParameters event fired for both Delphi and RAP code. Are you by
chance calling PrintToDevices to run your application? If so, you need to
m…Hi Filip,
This is not currently a built-in feature of ReportBuilder however it would
make a nice addition.
In my testing, I was able to easily scroll to the search position by adding
the following line of code to th…Hi Josef,
For the grand total, I would recommend using a lookahead calc or variable
inside a header band, similar to the example below.
Instead of showing a percentage like the example, I would suggest using two
rec…In this case you will need to manually update the chart on the form as the
report generates. Take a look at using the group events to keep the chart
properly updated.
--
Regards,
Nico Cizik
Digital Metap…Hi Alessandro,
The TppDPChart is only designed to connect to a datapipeline in
ReportBuilder. One option is to create the chart in its entirety on the
form and then show it inside the report as an image inside a TppImage