nicocizik
Comments
-
Hi Andrew,
If you click on the SQL tab of the query designer, you can then right click
over the greyed out SQL code and select the "edit" option. You will be
given a warning and then be given the editable SQL text.
Hi Max,
ReportBuilder traverses the data that it is given. The DisableControls
property essentially prevents data-aware controls from updating every time
the active record changes If you are using datasets that were created …Hi Guillermo,
Are you exporting to a delimited textfile or a Report Emmulation Textfile?
Exporting subreports to a delimited textfile is not natively supported in
ReportBuilder however you can work around this limitation by us…Hi Mauro,
You can use the PrintPosition property of the SummaryBand to define where on
the last page you would like it to start printing. This property is defined
in report units so if you are using millimeters, you will need…Hi Eugene,
Thanks for the clairification. There is no built-in feature for
ReportBuilder that will do this automatically however it is possible to
measure where the last detail band is printed on a page and based on that
Hi Eugene,
You can use the TppSubreport.StopPosition property to define where on the
page you would like the subreport to stop printing before moving to the next
page.
--
Regards,
Nico Cizik
Di…If you look at the example, the code inside the Detail.BeforePrint event is
setting the DetailBand.BandsPerRecord property to the FCopies value. In my
testing with the example, setting the FCopies to 0 works correctly. What
are y…Hi Isaac,
My suggestion would be to change the number of copies (FCopies) every time
the data is traversed. You could possibly use the
DetailPipeline.BeforePrint event to determine when this is occuring.
You will n…Isaac,
In the example you will notice that the FCopies property is set by a
paremeter in RAP. This is what controls how many copies of each label will
print. Changing this value based on the record value will give you theHi Shaz,
Be sure you have the LookAhead property for the Variable in the main report
set to True. Also, be sure your report is set to TwoPass. Take a look at
the following example of how to calculate the percentage of a grou…Hi Tyran,
Thanks for pointing this out. There is now a patch available for RB 10.04
that fixes this issue. If you would like the patch, please send an email to
support@digital-metaphors.com requesting it and we'll send it as…Hi Vincenzo,
I am unclear about what you are trying to accomplish. If you are connecting
to the detail pipeline from the group header band of the main report, you
will not be traversing the data one by one. In my quick tests…Hi Norbert,
Glad you got it working. A DBCalc with the calculation Count(*) should not
ever keep giving 0 if it properly connected to a dataset. Be sure it was
connected to the dataset the report is connected to.
…Hi Norbert,
Try placing a DBCalc component in the detail band and set its calculations
to Count(*).
--
Regards,
Nico Cizik
Digital Metaphors
in Numbering Detail-Lines Comment by nicocizik September 2006Hi Issac,
The "tips" directory is something we would like to organize and make
available to the public in the future. This is something we are currently
working on.
--
Regards,
Nico Cizik
Digi…Hi Isaac,
The following example shows how to customize the various features in the RB
10.x designer. It gives good examples on how to access and alter the main
menu and toolbars.
in disable open report in the desinger Comment by nicocizik September 2006Hi Jeroen,
There is now a patch available for this issue. Please send an email to
support@digital-metaphors.com requesting the patch and we'll send it to you.
--
Regards,
Nico Cizik
Digital Metaphor…Hi Jeroen,
Yes, that was it. I will research this and get back to you.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-meta…Hi Jeroen,
In my testing I am unable to recreate this behavior. I followed the exact
steps you gave below and the visible property of the OutlineSettings is true
if the report was saved with it set to True. (to file).
<…Hi Craig,
ReportBuilder is not compatable with the personal edition of Delphi. This
edition does not include any database access tools which are required to
successfully work with ReportBuilder. You will need to use the prof…Hi Goran,
My guess is that the AV is occuring because you are trying to load a
subreport again as it is already generating. The OnPrint event may be
firing twice due to a page break or some other reason but in any case it is …Hi Carlos,
1. Take a look at the article below on how to troubleshoot endless page
reports.
2. What type of printer is this (i.e. laser, dot-matrix, etc)?
3. Try updating the printer driver you are using for t…Hi Charles,
Thanks for the clairification. Yes this is definitely possible. You will
need to have your custom query designer descend from the TdaCustomDataWizard
class. Take a look at the following example of how this can b…Hi Charles,
Are you trying to add to the query designer toolbar? This is not something
that is natively built-in to ReportBuilder. What exactly are you trying to
accomplish?
--
Regards,
Nico Cizik…Shahine,
You need to add ppTypes to your uses clause. If you are loading templates,
you will need to assign this property after the template has loaded in the
OnLoadEnd event. Take a look a the following article.
Another option would be to place a child or fixed subreport with
KeepTogether set to True in the footer band and have all the components
inside the subreport (including other regions).
--
Regards,
Nico CizikHi K.R.
One option would be to place all the components in the footer into a
TppRegion component and set the region to KeepTogether. Another would be to
set the entire group to KeepTogether.
--
Regards,
…Hi Bill,
Thanks for your interest in RB 10.
Yes, all file devices (Text, PDF, Archive) in ReportBuilder now descend from
the TppStreamDevice. The TppStreamDevice class includes the OutputStream
property. You can a…Hi Fillipe,
ReportBuilder does not support report template inheritance. One option
would be to dynamically load your header and footer bands from pre-created
report templates into subreports that reside inside these bands. T…Hi William,
This is not a known issue with RB 10.x. My first recommendation would be to
update your version to RB 10.04. This is a free upgrade to registered users
of RB 10.x. Contact info@digital-metaphors.com for updating…