nicocizik
Comments
-
Hi Andrew,
There is a freeware component available from our website that allows you to
merge archive files into one. This can be downloaded from the following
address. (The file is kuRAFMerge.zip).
in RAF and template help Comment by nicocizik October 2005 -
Thanks Santy,
In this case ReportBuilder gives the PrintOnFirstPage property precidence.
The solution is to create a TwoPass report and check the Report.PageCount
before the second pass begins. If the report only contains one… -
Hello,
Which version of ReportBuilder are you using? In my testing with RB 9.03
setting the PrintOnFirstPage property to True and the PrintOnLastPage
Property to False allowed the footer to print if there was only one page an… -
Hi Eduardo,
ReportBuilder simply traverses the data given to it and displays it on the
report. Let's try to simplify and see if we can track down the problem. As
a test create a simple application containing a query that onl… -
Hi Eduardo,
1. Where is your DBText component located? In order to show traversed data
it will need to be located inside the detail band of a report.
2. Be sure the datasource is connected to the report (Report.Datapip… -
Hi Guney,
For future reference please send all attachments to
support@digital-metaphors.com.
Try using the OnStartPage event to increment the invoice number if you need.
This event will fire before a new page is gen… -
Hi Barry,
Try changing your library path to \RBuilder\Source\ and rebuild your
application. This will use the ppChrt source file rather than the
pre-compiled .dcu file located in the \Lib\ directory. Once you finish
bu… -
Hi Barry,
Are you able to run any of the ReportBuilder demos located in the
\RBuilder\Demos\... directory? This may be a corrupt install. I would
recommend following the instructions below for a corrupt instal clean-up and <… -
Hi Johnnie,
Try having them print to a different printer and see if the results change.
This would isolate the printer/printer driver as the issue.
Usually the DirectDraw will help if it is turned on (set to True). You c… -
Hi Johnnie,
1. Be sure your customer is using the latest printer driver for the printer
they are using. Does this occur for every printer they print to?
2. Some printers do have issues with transparent printing, settin… -
Hi Bharathi,
ReportBuilder does not natively include a grid component other than the
crosstab. You may want to take a look at Grid Pack, a third party add-on
tool for ReportBuilder. ( in Grid on the report Comment by nicocizik October 2005 -
Hi Ulrich,
Your first option would definitely be easier and is what we designed
ReportBuilder to do. Take a look at the following example of loading a
template into a subreport located in the header of another report. This <… -
Hi,
Unfortunately the device knows nothing about each individual group in a
report. The best approach for a task like this one would be to create a
dynamic query connected to a single report object, then each time the query <… -
Hi,
Adding a PrinterDevice to the device list will allow you to print as well as
export once calling PrintToDevice...
uses
ppPrnDev;
procedure TForm1.Button1Click(Sender: TObject);
var
lPrint… -
Hi Tyler,
Unfortunately there is no built-in way to determine the dynamic height of a
band before it is generated. Take a look at the following example of how
this can be done in code by manually moving each drawcommand.
Hi Tyler,
You can use the PrintPosition property of the SummaryBand to define the
vertical position of the band on a page. This property is measured in
report units.
--
Regards,
Nico Cizik
Dig…Hi Manuel,
You can use the TppReport.Groups property to gain access to any of the group
objects associated with that report. For instance...
ppReport1.Groups[0].KeepTogether := True;
--
Regards,
Hello,
First check the ReportBuilder Reference | TeeChart | Delphi 7 |... section
in the RBuilder.hlp to be sure you have a compatable version of TeeChart for
your version of ReportBuilder. If so, you will need to install you…Hi Pat,
Sounds like what you need is a ZeroWhenBlank feature
. By default in
ReportBuilder, Null values a…Hi Jon,
Another option would be to create a pass-thru function for the RoundTo
routine. Examples of creating pass-thru functions can be found in the
\Demos\0. RAP\... directory.
--
Regards,
Nico Ci…Hi Pat,
Unfortunately not. The DBCalc component does not interact with a DBText
component at all when calculating a sum, it pulls the valued directly off
the database. My recomendation would be to place a TppVariable i…Hi Kurt,
There is no built-in way to do this. It would however be possible to create
a simple application that loads an existing template and adds or removes
components as needed. The question then is what to do if your new …Hi Jon,
You can change the TppDBPipeline.RangeEnd property to reCount then set the
RangeEndCount property to the number of records you would like to traverse
before ending. Doing this to the detail pipeline should give you th…Hi Jon,
You could also try creating some global variables in RAP which would remove
the need to add another component to your report. These global variables
could hold your previous row data until it is needed to calculate th…This is a multi-part message in MIME format.
Hi Andy,
You can find the width and height of a page using the
Report.PrinteSetup.PageDef property. If you would like to use screen
pixels, see the spPrintableWidth. Using this value (perhaps in the
Report.BeforePrint …Hi Colin,
It is possible to create a simple preview plugin that hides the print button
on the preview form. Take a look at the following example.
Hi Dan,
If you set the Report.SaveAsTemplate property to True, you will be prompted
to save the report if changes have been made in the designer.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Diego,
I downloaded the exact example I gave you and was unable to recreate the
behavior you are experiencing. The example prints successfully to screen
and printer. Are you doing anything else that may cause different be…