nardmoseley
Comments
-
Try downloading the following example...
http://www.digital-metaphors.com/tips/FillPageWithLines.zip
--
Nard Moseley
Digit… -
Open any of our demos in RBuilder\Demos\EndUser Databases\
Notice that we always use a connection component (i.e. TDatabase,
TADOConnection, etc).
See the article below and notice the part about:
"We recom… -
I am probably not understanding this question. Looks like to me you have
some group based totals (i.e. Total of 11, Total of 12). And then you have a
grand total.
Perhaps this example will give you some ideas:
C… -
If you are getting Page 1 of 1, Page 2 of 2, etc., the you need to set
Report.PassSetting to psTwoPass.
If the subreports are pbSection, you can use the subreport.ResetPageNo to
control whether page number restarts when a … -
Create a Group on a TppVariable component and use the TppVariable.OnGetText
to return the group value. Or use the Group.OnGetBreakValue event.
--
Nard Moseley
Digital Metaphors
in Creating a group based on multiple fields Comment by nardmoseley February 2003 -
This is a multi-part message in MIME format.
-
The specific data connections and location of the subreport depends on the
datasets and the exact report output that you need.
My guess is that the main report will be connected to a master dataset or
will not be connected… -
Create a subreport and set it to pbFixed. Size the subreport to occupy the
desired amount of page space - for this example it needs to be "15 lines"
tall. Connect the subreport to the datapipeline containing the ply details.
-----------------------------------------------------
Tech Tip: Controlling Available Print To File formats
-----------------------------------------------------
How can I limit which file formats are displayed by
the print…
There are two settings related to this.
Report.OutlineSettings.Enabled - this controls whether the outline is
generated by the report
Report.OutlineSettings.Visible - this controls whether the outline is
displayed in …
The ClientDataSet should behave like all other datasets. This is not a known
issue.
If Report.DataPipeline is assigned and there is available field info, then
there should be a field list displayed.
If you would…
Please do not cross-post.
This message has been answered in the EndUser newsgroup.
--
Nard Mo…
Add a SummaryBand to the report. Set SummaryBand.NewPage to true. Place the
RichText memo in the summary band and set stretch to True.
--
Nard Moseley
Digital Metaphors
You need to perform this calculation outside of RB, prior to calling
Report.Print.
Simplest solution would be to perform the calculation in a SQL Statement.
--
Nard Moseley
Digital Metaphors
RB Server Edition executes reports within the context of an NT Service.
RB 7 is the first version of RB to be thread-safe. You should update to RB
if you are using a prior release.
RB Server supports reports on forms…
Thanks for your interest in ReportBuilder.
1. Two options for inheritance:
a. Use Delphi's Form inheritance. This does not work for the DataPipelines
but will work for the report layouts. Form inheritance is not comp…
Try setting the subreport PrintBehavior to pbSection and then set
subreport.ResetPageNo to True.
When I try this with a simple test here, it works properly. The summary
prints at the end of the report with its own page num…
ReportBuilder 7 Server Edition does this, please see the following Live
Demo:
http://www.digital-metaphors.com/RBServerLive
ReportBuild…
Good to hear that found a solution.
E-mail support@digital-metaphors.com with steps on how we can recreate this
issue and we'll check it out.
--
Nard Moseley
Digital Metaphors
in Mysterious range error Comment by nardmoseley February 2003
If the TField.FieldType is ftFMTBcd, then RB internally converts the type to
Double.
As a test try the following:
1. Modify your Delphi library path from RBuilder\Lib to RBuilder\Source
2. Add a TButton to…
Sorry, but I do not understand the question. The text may appear slightly
different in previewm, due to the higher resolution of the printer (~96 ppi
for screen and ~600 ppi for printer).
What are you trying to accomplish?…
The margins are controlled via the Report.PrinterSetup properties. See demo
121 (dm0121.pas) in RBuilder\Demos\Reports\Demo.dpr. You should be able to
modify this example to do what you need. Note that once the report is
preview…
Creating a descendant of DBText would provide the best solution.
Another solution would be to connect all of the DBText to a single
event-handler.
--
Nard Moseley
Digital Metaphors
in Handling overflow in a numeric field Comment by nardmoseley February 2003
The following example shows how to do this. It prints a "..." when the
characters do not fit within the boundary of the control.
htt…
RB only stores the Report.PrinterSetup properties. It does not store the
DevMode.
Therefore you would need to write code that saves the DevMode.
The example mentioned in the aticle contains code that shows how to app…-------------------------------------------------
Tech Tip: Configuring Printer Specific Options
-------------------------------------------------
The Report.PrinterSetup properties can be used to set the properties that
ar…
The RB Dade plug-ins do not currently support table views. However, after
posting the above message you sent the following suggestion to
suppot@digital-metaphors.com for a proposed solution.
Thanks!
Using the TreeView.PaintTo might not work on a printer canvas, due to the
difference in resolution (i.e. ~96 ppi for screen vs.~600 ppi for the
printer). You would need to account for the difference.
--
Nard Moseley