nicocizik
Comments
-
Hi Felix,
There is no built in way to load an image from the Internet to a report but
you could load it manually perhaps using the DetailBand.BeforePrint event.
Inside this event, you could retrieve the current URL value from th… -
Felix,
If you click the Detail band in the designer, then move to the events tab of
the Object Inspector in Delphi, you should have access ot the BeforePrint
event of the DetailBand object.
--
-
Hi Adam,
This can be done rather easily using subreports. A subreport can be placed
anywhere on a report acting as a separate band as you describe or a
completely new report. The visibility of a subreport can also be toggled a… -
H Gunter,
Instead of using a DBCalc component, try using a TppVariable and make the
calculations inside the OnCalc event. The TppVariable is much more
customizable as far as when it resets and how it works with other components… -
Hi Rob,
It is on our to do list to create an easier way to convert templates to work
with other databases. For now the easiest way is to extract one of your old
reports and save it to file as ASCII text. Then using a blank rep… -
Hi Giananionio,
Try setting the Report.DetailBand.BandsPerRecord to 4 and this should give
you the effect you are after. This is a published property and can be
accessed from the Delphi Object Inspector after clicking on the d… -
Hi Gianantonio,
I'm unclear about the problem you are encountering. If you place a
subreport inside the label an connect it to your detail dataset, is it not
printing out the correct data in your label? If you are having issue… -
Hi Nenad,
You need to add ppJPEG to your uses clause. This should solve the issue.
--
-
Hi Santy,
Check out the following examples on how to load the wizards at runtime
without the use of the designer. You could do something similar except that
after the wizard has finished editing the report object, load the desi… -
Hi Al,
Sorry about the delay in this response. My news reader somehow lost your
post. Instead of using the RecordPositionChange of the pipeline, try using
the DetailBand.BeforePrint event of the report. This is the best event… -
Hi Joseph,
There have been no known issues with ReportBuilder 7.04 for Delphi 5 and
TeeChart 7. Be sure you had TeeChart 7 installed before installing
ReportBuilder 7.04 and that you selected TeeChart 7 support. If you wouldHi Neil,
When loading the memos into a DBMemo, the only reason ReportBuilder will
break a page is if it runs out of room on that page. Are you sure each
separated memo will fit properly on one page (i.e. the font and memo width…Hi,
Looking at the source, the OnSaveStart and OnSaveEnd events are not designed
to allow you to terminate the save process. These events are simply called
too late to have an effect on the save process. You are going to need …Hi Kumar,
Try making your report two pass, setting PrintOnFirstPage and
PrintOnLastPage to True, and in the FooterBand's BeforePrint do something
like the following...
if ppReport1.AbsolutePageCount > 1 then
Hi Nick,
When printing to the printer in ReportBuilder, the report is always
regenerated. The problem is probably that the margins and object position
of the report you are trying to print on a different sized paper. When
Hi Paul,
Try setting the Report.CachePages property to True. This will store the
original pages into memory.
--
Hi Paul,
I went ahead and created a small example showing how I would go about doing
this. This example essentially creates a report with a lable and a Fixed
style subreport inside the detail band with PrintCount set to 1, and<…Hi Joe,
1. A Delphi unit is essentially separated into two parts the Interface, and
Implementation sections. Since we do not provide the source to RAP, you
will only be able to change code located in the Implementation section…Hi Joe,
Unfortunately, you are only going to be able to change the Implementation
section of the TppPlainTextParser class if you would still like to use RAP.
Depending on what changes you need to make, you may be able to alter t…Hi Joe,
Check out the following example. This shows how you can add a line (for
instance) to the bottom of the last detail band on a page by creating a draw
command at runtime. Hope this helps.
in Rebuild Ent with Delphi5 Comment by nicocizik September 2004Hi Joe,
Since we do not provide the source for RAP, if you change any of the
Interface sections of the ReportBuilder source, you will no longer be able
to use it. If you would like to add functionality to ReportBuilder and
Hi Michael,
A drill down report requires a master detail relationship between two
separate datasets in order to function correctly. In a master detail
report, the subreport will use the linking key field to determine where to<…Hi Kei,
Is your report set to twopass? If possible, please send a small example of
this behavior in .zip format to support@digital-metaphors.com and I'll try
to recreate it on my machine.
--
Hi SeHun,
The myCheckBox unit is part of the ReportBuilder Sample Components package
which enables the CheckBox component to be placed on a report. This
component is already available at design time in which case the myChkBox.d…Hi Larry,
You will need to add ppTypes to your uses clause.
--
Hi John,
I believe Ben was referring to the vertical orientation of horizontal
text within a text box. The behavior you describe below can be
accomplished by using a TppMemo component with the CharWrap property set
to T…Hi Ben,
Unfortunately this is not a native feature of ReportBuilder. It is
still however on our list of possible enhancements and I will add your
request to help possibly get it researched and implemented.
Re…Hi Adam,
Unfortunately, this feature is not available in ReportBuilder. As a work
around, you will either need to use multiple labels or memos and split your
wrapped text to position it correctly. I will add vertical text alig…Hi Nenad,
The RotatedText component was not created by Digital Metaphors and therefore
cannot be supported as well. The RotatedText component was created by a
user of ReportBuilder Artem Berman in order to enable text rotatio…