digitalmetaphors
Comments
-
Check the fields that are defined onthe datapipeline by double clicking on
the datapipeline. At Delphi design time, sometimes new fields don't get
autocreated after the pipeline has created the fields for the first time.
Try toggling… -
Have you tried setting the Font.CharSet to Hungarian on the report text
controls?
Cheers,
Jim Bennett
Digital Metaphors
-
Yes, the group footer will need to be the size of a label. This should be
the same size as the detail band. Now, when the group footer prints, it
will print summary information in the label immediately follwing the last
detail label… -
Sorry, I misunderstood.
You're right Darryl, the group footer will do the trick.
Cheers,
Jim Bennett
Digital Metaphors
-
Check Report.Detailband.BandsPerRecordCount in the BeforePrint event of the
detail band. This way you can set the visibility of the label, and set its
caption.
Cheers,
Jim Bennett
Digital Metaphors
There are also extended rtf mail merge capabilities in the RBAddOn component
set. www.bancoems.com\RBAddOn.htm
Cheers,
Jim Bennett
Digital Metaphors
Check out the main reports demo project. See ..\RBuilder\Demos\Reports.
Look for report #28 in the running project.
Cheers,
Jim Bennett
Digital Metaphors
Yes, you are setting the correct property.
Cheers,
Jim Bennett
Digital Metaphors
Can you go into the Delphi | Component | Install packages and check the
entry for 'ReportBuilder Teechart 5.02 Components'? Does this work? If it
does check, then the package is installed correctly.
Cheers,
Ji…There is an end user example in the
RBuilder\Demos\EndUserDatabases\SQLServer Look in this directory for a SQL
script which creates the tables. The Items table is the one that the
templates are to be stored in. What is the data typ…Here is a modified version of dm0116. It sets the detail band's visibility
when you encounter this case:
http://www.digital-metaphors.com/tips/…There was a bug. I'm emailing you a patch file to the email listed in your
post.
Cheers,
Jim Bennett
Digital Metaphors
It sounds like your version of BuilderControls is for D5. I didn't have
BuilderControls installed on my current machine, so I downloaded it
http://www.digital-metap…-----------------------------------------------
Article: Custom Paper Sizes on Windows 2000
-----------------------------------------------
Win 2000 (and Win NT) have a completely different printing architecture from
Win 9x…There is a patch available that adds support for 64 bit integer fields.
Please contact support@digital-metaphors.com.
--
Cheers,
Alexander Kramnik
Digital Metaphors
One way to handle this is create a group that breaks after the first N
records. You can download an example of how to do this from the following
location:
www.digital-metaphors.com/tips/TopNRecords.zip
--
Cheers,…You need to include ppTypes which defines the component types. Similarly you
could also disable unwanted components in the object inspector instead of
having to do it programmatically.
--
Cheers,
Alexander Kramni…Please see the Dynamic Subreport Loading demo in the RBuilder\Demos\Enduser
directory for an example of how to dynamically load pre-made headers and
footers into a report.
--
Cheers,
Alexander Kramnik
Digita…What is on the page (ie. which RB components and how many)? 3K is pretty
large for a single page. Have you run your code through a memory profiler
to see where it is leaking?
Cheers,
Jim Bennett
Digital M…You don't need to link the pipelines if you are linking the datasets for a
master-detail report.
You can place two DBGrids on your Delphi form and hook them up to your data
sets to examine the data being retrieved. This will all…Set the ShiftRelativeTo property of the Credit subreport to the Sold Item
subreport. This will dynamically position the Credit subreport to follow the
Sold Item subreport. Do the same for Sold Item and Payments.
--
Cheers,<…Please reinstall ReportBuilder using the following guidelines:
--------------------------------------------
Article: Cleaning up a Corrupt Installation
--------------------------------------------
If you have been adv…You can center the image vertically within the band in the detail band's
before print method. For example:
procedure TForm1.ppDetailBand1BeforePrint(Sender: TObject);
begin
...
{ load image }
...
ppIm…1. You can set the positions of the text components in the Detail Band's
before print event. You need to use the printer canvas to calculate the
width of the text to know how much to shift each label. Here is an example
that sizes and…1. There is a PageBreak component available in the RBAddOn component set.
Surf www.bancoems.com\RBAddOn.htm
2. The other alternative is to create a group on the data field. The group
will break on every detail band. You can set …I changed the demo a little to use a section style subreport and different
timing to calculate the position. You will need to calculate the last
possible starting position of the header memo in the
Subreport.Report.OnStartPage event, …There is an Engine property is on the Subreport.Report object. To use this
technique in a subreport, I have uploaded a new version of the demo. Use
the same link to download this version:
in printing ppMemos on pagebrakes Comment by digitalmetaphors April 2002You will have to check the position of the report engine's PrintPosRect,
when the detail band prints, to see how far down the page it is generating
in order to keep from orphaning a body memo from the header memo. Here is
an example …I set up a report with a TppMemo of the length you described, saved the
report as a template, and loaded it at runtime. The memo printed in it's
entirety. Please send a sample project that reproduces the problem you are
describing to …Please look at the Report Explorer demo in
RBuilder/Demos/EndUser/ReportExplorer for an example of activating the Calc
and Data tabs. Remove the x from the {x$DEFINE RAP} statement and see if
that enables the calc tab. Please send a s…