nicocizik
Comments
-
Hi Stijn,
Please construct a simple example using the DBDEMOS that demonstrates this
behavior and send it in .zip format to support@digital-metaphors.com.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Stijn,
I believe this was a bug for ReportBuilder 6. Please try downloading a
trial version of ReportBuilder 9 and test with that. Be sure to back up all
your templates before loading them in RB 9.
--
Reg…Hi Georgios,
The current TRotatedText component was not designed to work with RB 9. RB 9
contains a completely new design controls archetecture that is much more
elegantly designed and easier to understand. Try replacing ppD…Hi Heinz,
If you have the proper .dll files installed, you can change the language RB
uses at runtime using the TppReport.Language property. See the
ReportBuilder help for this topic for more information. I also posted anHi Steve,
I'm a bit unclear about what you would like to happen. If a certain DBText
component is blank, would you like your entire report blank except for the
date? If so, you could simply set the detailband's visible prope…Hi Filip,
Check out Demo 122 (dm0122.pas) located in the \RBuilder\Demos\1.
Reports\... directory. This example shows how to print to multiple devices
at a time. The multiple devices are two printer devices but you will need…Hi Pascal,
There are probably many ways to go about this. I would recommend placing a
TppVariable in your detail band and in the DetailBand.BeforePrint event,
check the field value and adjust the value of the TppVariable acco…Hi Dietmar,
The ShiftRelativeTo property will not maintain the distance between objects
vertically. To ensure there is a given distance between object on a report,
you will need to use teh BottomOffset property.
--…Hi Dietmar,
You should be able to accomplish this by placing one region on top of
another and toggling the visibility of each according to the condition.
This is possible by using the TppRegion.ShiftRelativeTo…Ivan,
I gave an answer to this question in your previous post. You can follow up
here if you like.
--
Regards,
Nico Cizik
Digital Metaphors
in Ref.: ppBeforePrint Comment by nicocizik December 2004Hi Eugenio,
In order for a barcode to read correctly, it needs to be sized proportional
to the number of characters you have. You can try adjusting the
WideBarRatio property and see if that still works for the barcodes you ar…Hi Georg,
This is not a known issue with using RB and a terminal machine. You can
gain access to the preview form by using the TppReport.PreviewForm property.
Perhaps using this property, you can change the focus of that wind…Hi Brandon,
Have you tried printing to a different printer? This is not a known issue
with ReportBuilder nor are we able to recreate it on any of our printers
here. If you would like you can send an example of this behavior …Hi Branden,
Some printers have issues printing certain shades of gray. Try printing to
a different printer and see if you get the same results. Also be sure you
are using the latest printer driver for the printer you are usi…Hi Lasse,
This is a limitation of the horizontal band engine in ReportBuilder.
Grouping left to right columns is not fully supported to work the way you
need.
--
Regards,
Nico Cizik
Digital Met…Hi Daniel,
There is a patch available for this issue. Please send a quick email to
support@digital-metaphors.com requesting it and we'll send it right out to
you.
--
Regards,
Nico Cizik
Digita…Hi Bill,
Thanks for pointing this out. I was able to recreate the issue at design
time in Delphi 2005. However at runtime, the issue does not seem to appear.
This leads me to believe that this is a Delphi 2005 issue. We wil…Hi Andrew,
1. Yes, using a WMF instead of a GIF will give you the best possible image
resolution and spacing.
2. I have never used a conversion tool like this personally but I'm sure
some other customers will chim…Hi Filip,
You will need to use the StartJob and EndJob events of the TppDevice in
order to print each page individually. See Demo 123 for an example of using
these events.
--
Regards,
Nico Cizik
Hi Filip,
Here are a couple examples that may help you with this...
http://www.digital-metaphors.com/tips/PrintToPrinterAndArchive.zip<…Hi Eric,
Try setting the TppDBText.SuppressRepeatedValues property to True and see if
that gives you the effect you are after.
--
Regards,
Nico Cizik
Digital Metaphors
in Skip same values Comment by nicocizik December 2004Hi Christian,
If you have AutoCreateFields set to True, you should only need to close,
then open the DBPipeline in order for it to refresh its field list. In my
testing, this worked fine except the DataTree, which you need to…Hi Christian,
When are you changing the data in your query? If you are doing this during
report generation, there is no way to refresh the datapipeline, because it
is being traversed at that time. Perhaps a little more infor…Thanks, that's a good tip Jon,
Yes, if you initialize the printer object before you actually print any
reports, the information will be cached and there should be no delay when
you do decide to print.
--
Regar…Hi Josep,
I was able to recreate this issue and it seems that the
GetDeviceCapabilities API call hangs a little when making requests from the
printer driver when that printer's computer is shut off. However once
ReportB…Hi Josep,
Which version of ReportBuilder are you using? In our testing over a network
printer, the printing was equally fast when the printer was turned off.
--
Regards,
Nico Cizik
Digital Metaphors…Hi Martha,
Every TppComponent descendent has a Region property. Setting this property
will assign that component to that region. For instance...
ppLable1.Region := ppRegion1;
Note: Nested regions are not suppo…Hi,
You will want to check out the AutoSearch capability of ReportBuilder.
AutoSearch can be defined in Delphi code or by using the Data Workspace in
the designer (DADE). Check out the AutoSearch demos located in the
\R…Hi,
Sorry, I did not relize you were using an older version of ReportBuilder.
The preview plugin archetecture was not in place yet for RB 6. You will
need to either upgrade your version of ReportBuilder or create a replacemen…Hi,
The PrintButton property is a public property of the TppPreview class.
Adding ppPreview to your uses clause should make this property available for
a descendent of the TppPreview class. Which version of ReportBuilder are …