nicocizik
Comments
-
Hi Pat,
I'm a bit unclear about what is happening here. Where is the word "Euro"
being displayed? ReportBuilder does not have any code in it to display the
names of currencies. Could you perhaps have Euros set as your default… -
Hi Craig,
In my testing, I was unable to recreate this behavior. As a test, try
commenting out all your event handler code and see if that makes a
difference. If not, please send a small example demonstrating the issue to
Hi,
It is possible to rotate the barcode component by changing the
TppBarcode.Orientation property. You can also rotate text using the
RotatedText add-on component available from our web site in the friends |
rcl section (…Hi Richard,
Yes, there was a Background printing feature added to ReportBuilder after
version 7.02. You can enable background printing by accessing the
BackgroundPrintSettings from the report object. For more information on ho…Hi Dennis,
Again I must apoligise for not realizing you were using an ArchiveReader
rather than a Report object. When using the ppArchiveReader, you need to
use the OnInitializePrinterSetup event to set any PrinterSetup propert…Hi Dennis,
Sorry for the delay in this response. After your first post, I failed to
see that you were setting your Report.DeviceType to PrinterFile rather than
Printer. PrinterFile is an TExtraDevices device that I assume trie…Hi Dennis,
When selecting a different printer using the PrinterNames property, does it
still print to the default printer? How about when selecting a printer
manually using the Object Inspector?
--
Hi Dennis,
When setting the printer name, you need to have the exact printer name used
by the printer device for it to work. The best way to ensure you use the
right name is to select the printer name from the
Report.Print…Hi Dennis,
When changing the printer setup in the archive reader, you need to use the
TppArchiveReader.OnInitializePrinterSetup event to do so. This will ensure
that the correct printer setup options will be used for every page…Hi Nols,
ReportBuilder does not contain any code to access your network directly.
The only thing RB talks to is datapipelines which in turn talk to the
dataset components you are using. If you would like to trace into our
…Hi Nols,
The DBImage uses the same technique that you are using to load images from a
database blob field. I'm a bit unsure what you mean my "Datacom traffic"
but if you are talking about the network traffic between your databa…This question is being handled through email.
--
Hi Gary,
Check out the TppCrossTab.Matrix.DeleteColumns method. This allows you to
delete a certain number of columns from the crosstab matrix at runtime. See
the help topic for the above method for more information.
Felix,
Which type of printer are you having trouble with? Is there a certain
object on your report that is being cut off? If you are able to create the
problem on certain printers and not others, then this is a printer specifi…Hi Joe,
You need to set the TppLine.Region property equal to the region you would
like the line to be in. Other than this, everything else looks great.
--
Hi Heiko,
We have had many customers successfully use ReportBuilder with DBISAM 4.0.
Regardless the version, any version of RB should be able to support DBISAM
4.0. RB relies on the TDataset interface in which the way we talk to…Hi Mike,
Your best approach would be to create a subreport inside your title band and
load a common report template into that subreport for each report you have.
You can create and load this report template by hand or in code do…Hi Patrick,
You need to install the InfoPower add-on package for ReportBuilder for all
the richtext formatting to work with a TppRichEdit component. All the files
you need and installation instructions are available in the
Hi,
Check out demo 153 (dm0153.pas) located in the \RBuilder\Demos\Reports\...
directory. This demo shows how to spawn a new report inside a single
preview using a tab component.
--
Hi Jason,
Unfortunately, this is a limitation of the ReportBuilder design. The Report
Engine will move to the next field in your dataset before it realizes that
the detail band has run out of space and needs to move to the next…Hi Joe,
Check out the following example of placing a line at the bottom of a band by
moving the draw command. You should be able to use this technique to print
a solid line at the bottom of each page in your report.
…Hi Dan,
I would recommend placing a subreport at the beginning of your report and
using that to display the differently formatted first page.
Below are a couple examples that could help you out.
in Multiple Page, Different Format Comment by nicocizik November 2003Hi Richard,
Sorry, this is not a known issue with ReportBuilder. Are you able to
determine where in the InitializePrinterControls routine, the application is
causing an AV? Which version of ReportBuilder are you using?
---------------------------------------------------------
Tech Tip: Define Master/Detail DataPipeline Links in Code
---------------------------------------------------------
Defining a Master/Detail relationship for a DataPipeli…Hi Patrick,
You can draw a border around an object in ReportBuilder either manually
adding a TppRectangle component or a TppRegion component around the report
object. You can also add a grid/border around text components automa…Hi Joe,
Which version of ReportBuilder are you using? In my testing, I was unable
to recreate this issue. Be sure you are using the latest version of
ReportBuilder... 7.03. If you still experience a problem, please send a
Hi Scott,
Yes, the syntax you are using to join two tables should work fine. Is there
an issue with the SQL you gave below? You might also want to check out
DADE, which comes with ReportBuilder Pro or higher. Using DADE you c…Hi Edward,
Sorry, the DBCalc component will only calculate the Sum, Minimum, Maximum,
and Average of a data field. A weighted average will have to be custom
coded perhaps using a TppVariable and the OnCalc event.
-- …Hi Andy,
You should be able to do this using a group with its KeepTogether property
set to True. The group should be set up to break on each record and you
should be able to still use the same subreport you already have on your…Hi Andy,
I am unclear about what you would like your report to look like. If you
have the KeepTogether property set to True for your subreports, the title
band will then move to the next page, essentially keeping the subreport<…