nicocizik
Comments
-
Hi Ueliton,
I'm sorry, but I'm a bit unclear about what you would like to accomplish.
Are you trying to limit the number of pages printed or would you like your
report to simply start on page 10? Is the PrintCount property no… -
Hi Todd,
Sorry, I did not understand the initial question. See Demo 124 located in
the \RBuilder\Demos\1. Reports\... directory (dm0124.pas) for an example of
how to print only the pages you define. This example coincidental… -
Hi Todd,
If you are using a two pass report, you can use the Report.AbsolutePageCount
property inside the OnStartSecondPass to determine the total amount of pages
in your report.
--
Regards,
Nico Ci… -
Hi Jose,
Try setting the TppDetailBand.PrintHeight to phDynamic. This will shrink
the detail band if no objects exist inside it.
--
Regards,
Nico Cizik
Digital Metaphors
in How No print something when I have some Condition Comment by nicocizik October 2004 -
Hi Jose,
Inside the DetailBand.BeforePrint event, you will need to check the
condition. If the condition is not met, you can then set the Visible
property of one or numerous report components accordingly. If you need to
Hi Bill,
Take a look at the class procedure AssignLabelDefToReport located inside the
ppLabelDef.pas file. This gives you the specific report properties that the
LabelDef will be assigned to before printing. You can use this…Hi Vincent,
Unfortunately, ReportBuilder is not capable of creating vertical bands. The
closest thing I can get you to that effect is to use a columnar report with
a virtual vertical column header and footer as shown in the e…Hi Steve,
Check out Demo 33 located in the RBuilder\Demos\1. Reports\... directory
(dm0033.pas). This shows how to "squeeze" a muli-line address containing
multiple field values using TppMemo components.
--
R…Hi Kevin,
Be sure the shape is in fact inside the Region. You can do this by opening
the Report Tree (View | Toolbars | Report Tree... main menu option). The
items located in the region will show as children to the region it…Hi Ailton,
There is a third party component available from our website free of charge
named RotatedText. This gives you a label component that can be rotated to
any angle you like inside a Report.
in Rotate a label Comment by nicocizik October 2004Sorry about that...
http://www.digital-metaphors.com/Subpages/Downloads/CompanionRCL.html
--
Regards,
Nico Cizi…Hi Mike,
You need to set up a Master/Detail relationship between your main dataset
and the dataset connected to your subreports in order to limit the number of
records the subreport will traverse. See the article below and th…Hi Alessandro,
Unfortunately there is no way to give the visual linking capability or SQL
editing capability once you have altered the SQL code manually. It is
possible to link the dataviews in code once they have been manual…Hi Steve,
You need to add ppTypes to your uses clause. You will find that most of the
enumerated types are located in this file.
--
Regards,
Nico Cizik
Digital Metaphors
in How to change range Comment by nicocizik October 2004This is a multi-part message in MIME format.
Hi,
Unfortunately, ReportBuilder does not currently support bidirectional
languages or Unicode. The DBPipeline is not designed to recognize this type
of name.
--
Regards,
Nico Cizik
Digital Me…This is a multi-part message in MIME format.
Hi Marc,
There are no known issues like this with ReportBuilder 7.04. Please send a
small example of this behavior in .zip format to
support@digital-metaphors.com that I can run on my machine and I'll take a
look at it …Hi Ailton,
TppDeviceSubsitutions is located in the ppDevice.pas file which is
referenced in the uses clause of the BuilderControls.pas file given with the
RotatedText component. Which version of ReportBuilder are you using? …Hi Peter,
I'm at a loss...
Here are the exact steps I took in more detail. Perhaps you can spot
something I'm doing that differs from your method.
1. Place a TTable, TDataSource, DBPipeline, Report and a Butt…Hi Peter,
Unfortunately I am still unable to recreate this behavior. I have followed
your steps exactly as you state them below. Is there something I'm missing
in between steps c and d. The parameters are not missing when I…Hi Peter,
Does this only happen when saving to database? Could you please provide the
exact steps you take to recreate this behavior?
--
Regards,
Nico Cizik
Digital Metaphors
in Problems with Report.Parameters Comment by nicocizik October 2004Hi Peter,
This is not the same issue that Ronald was encountering, nor is it a known
issue with ReportBuilder. I would suggest performing a corrupt install
cleanup and reinstalling ReportBuilder.
------------------…Hi Ronald,
This appears to be a design time only bug with Delphi 5. (In my testing
with Delphi 6 and Delphi 7, the error could not be recreated). Being that
this is a design time bug, we are unable to fix it with a simple pa…Hi Chris,
I created a small example that shows how you might go about this. Hope it
helps.
http://www.digital-metaphors.com/…Hi Steve,
You can take control of the main menu in the designer by using the
TppDesigner.Menu property. This gives you full access to the current
TMainMenu object and allows you to change or add new items to that menu.
<…Hi Steve,
If you have two DBPipelines linked in a master/detail relationship and you
would like to remove that link, you can simply set the detail datapipeline's
MasterDataPipeline property to nil. MasterDataSource is a read-…Hello,
Does the code below successfully remove the group from your report?
Remember that when you reassign the Group.Report property, the group is then
added to the end of the Report.Groups list so you may need to reposition i…Hi Mojoala,
I apoligise, "Copy" was the wrong word to use in this case. Once you remove
a group from the FGroups TList, you will loose you ability to find this
object again using this list. This means you will need to keep a…