nicocizik
Comments
-
Hi Bernhard,
You should be able to do this using three section style subreports. Create
a main report with only a detail band, then place three section style
subreports in the detail band. The first and last subreport will r… -
Hi Bernhard,
No it is not possible to install different versions of ReportBuilder for the
same version of Delphi. If you decide to install RB 10.04, the version of
7.04 will be automatically uninstalled.
Note that … -
Hi Bernhard,
Yes, you will be able to load your 7.04 templates in RB 10.04 without
problems. All templates are backward compatible. As far as we know,
WPTools still works correctly with RB 10.04 as well. My suggestion would… -
Hi Bernhard,
Unfortunately replacing or customizing the popup menus in RB 7.04 is not
possible. Starting with RB 9.0, we completely redesigned the internal
structure of the designer separating out all the components' menus an… -
Hi Luis,
Did you have a chance to trace your code and the RB code? It would be very
helpful to know where and how this AV is occuring.
--
Regards,
Nico Cizik
Digital Metaphors
in extrange AV when exiting app Comment by nicocizik January 2007 -
Hi Luis,
Are you able to trace into the RBuilder source or your own and see where the
problem is occurring. The destroy sequence is very precise in
ReportBuilder, if you are manually freeing something that is still in use,Hi,
Unfortunately this is not a feature of the CrossTab component in
ReportBuilder. You may want to take a look at Grid Pack, a third party
crosstab solution. I believe this component is much more customizable.
Hi Fillipe,
Yes, the idea would be that you set the detail band to phStatic and alter
the height on the fly while the report is being generated. For instance, if
each column is a group, you could use the GroupHeaderBand.Befor…Hi Fellipe,
There is no built-in feature in ReportBuilder to line each column up with
eachother.
For the columns with a small number of records, would you like to increase
the space between each record so they line …Hi Dominic,
As a test, try increasing the bottom margin of the report. If the margins
are set too small, they can sometimes fall outside certain printers'
unprintable area. In that case, report components will be ignored. S…Hi Dominic,
The built-in PDF device for ReportBuilder does not currently support
password protection and encryption. This is something that we would like to
add for a later release. It is possible however to use the Email fe…Hi Simon,
ReportBuilder does not have an option to keep a band together however by
placing a KeepTogether TppRegion inside a band with its ParentHeight,
ParentWidth and Stretch set to True, you will get this effect.
Hi Joe,
Try placing a TppPageBreak component inside the detail band with its
Visibility set to False. Then inside the DetailBand.BeforePrint event,
check the value of the current record and based on that value toggle the
Thanks Adam,
We appreciate your feedback.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Adam,
Currently there is no feature to move an object back or forward in the
z-order by one. This would be a nice addition, I will mark this down to be
researched for a later release. Thanks for the feedback.
-…Hi,
The DBText component is not a stretchable component so you will need to
manually alter the height to accomidate the size of an autosized vertical
text object. Below is an example I created that does this however while
Hi Dietmar,
Thanks for the example. If you would like to send it to us, we will keep it
in our archives.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Alice,
1. It is currently not possible to add lines between every record in the
ReportBuilder crosstab.
2. The row height and column width are determined by the renderer based on
the font size and length of the…Hi Bernhard,
Be sure you add ppJPEG and ppGIF to your uses clause to enable these image
types at runtime.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Vincent,
You need to add raIDE to your uses clause to enable the RAP environment at
runtime.
------------------------------------------------------------
Article: Controlling the End-User Environment
--------…Hi Max,
As a test, try printing to a different printer and see if you can create the
same behavior. If not, check the printer settings for the printer that is
having problems. Be sure that the DBText components are not falli…Hi Alan,
There are a couple options you can use.
1. Section Subreports: Take a look at demos 51 and 52 located in the
\RBuilder\Demos\1. Reports\... directory. These show how you can combine
multiple reports as o…Hi Alan,
If the main report is blank, remove all bands except the detail band and
place all three subreports inside there. This will prevent any blank pages
from printing when viewing the subreports.
--
Regar…You need to add ppTypes to your uses clause.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Bernhard,
Thanks for your interest in RB for .NET.
Digital Metaphors is currently working on RB for .NET. The project is being
approached in phases. The first phase will have the ability to preview and
print repo…Hi Deck,
The report object does not have any knowledge of a viewer being connected to
it. My suggestion would be to loop through all the components on your form
and if it is a TppViewer, check the Report property. If this ma…Hi Manos,
Are you using a registered copy of ReportBuilder or an application with
ReportBuilder built-in?
The PrintPosRect does give you the current position of generation. You can
subtract this number from the pag…Hi Manos,
Yes, this would be a nice feature. We will consider this for a future
release, thanks for the feedback. My suggestion would be to determine the
length of the image before it is used, then compare it to the amount o…ReportBuilder does not have any built-in image handling features. If you
are going to break the image into multiple parts, this will need to be done
manually in an image editing application or in Delphi code.
--
Regards…Hi Manos,
The TppDBImage component is not desinged to overflow to multiple pages.
Once an image is too large to fit on a page, RB will try to move it to the
next page to see if there is room for it there. If not, it will cont…