digitalmetaphors
Comments
-
DisableAutoRange doesn't do what you think it does. The method is of
TScrollingWindow, it temporarily disables scrolling. You need to directly
access components of the window to change their state. For example the code
below will disa… -
Make sure that you are making your changes in the report's
OnPrintDialogCreate event.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
This will be a new feature in the server edition.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
Version 6.03 is the latest version. Version 6.5 is still a few months away
from
release.
Cheers,
Jim Bennett
Digital Metaphors
-
There is a known issue with LeftToRight column traversal. This has been
fixed for RB6.5 but unfortunately no patch is available for RB6.03.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
Make sure that you have ReprintOnOverflow enabled on the Shape in addition
to StretchWithParent.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
There isn't any support for shifting relative to horizontally. What you can
do however is to place only one label and combine the contents of both
labels into a single string.
--
Cheers,
Alexander Kramnik
Di… -
Check out Demo 33 in the main reports demo in RBuilder\Demos\Reports for an
example of suppressing spaces.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
There is no way to insert a pagebreak into the richtext. You best option
would be to preprocess the richtext and create multiple RichText component
for each 'section' of the document. Then set ReprintOnOverflow on the
sections which w… -
You could also test without ReportBuilder involved. Create a new app with
the data access components on the form. Place a TDBGrid on the form. If
you install this new exe on the tester's machine, can you see the data in
the grid?
Are you using the report on the form or are you loading templates for the
canned reports? Was the template saved with a datapipeline name of
ppDBPipeline1, or does ppDBPipeline1 exist on the form? We'll need more
information from yo…You shold call Viewer.Cancel rather than Report.Stop. Then you can call
Viewer.LastPage to keep generating the rest of the report.
--
Cheers,
Alexander Kramnik
Digital Metaphors
When the report asks for a page, the cache is first checked for the page
and, if the page does not exist in the cache, only then is it regenerated.
Therefore you should be able to simply keep going through the report if you
havent cle…Since you have CachePages enabled, when you choose last page the in-between
pages will be generated and stored as well. When you page back through the
rest of the report the pages will be retrieved from cache. The pages
themselves, sh…You must specify the file to load from. ie.
Report.Template.FileName := 'mytemplate.rtm';
Report.Template.LoadFromFile;
--
Cheers,
Alexander Kramnik
Digital Metaphors
1. To get the standard header load a predesigned template into the report.
See RBuilder\Demos\End User\Dynamic Subreport Loading demo.
2. Since the design of the header is in a whole separate template, simply
restricting access …You don't have to use templates. Try placing the reports on individual
forms like our main report demo project. You don't have to create the forms
until you need them.
Cheers,
Jim Bennett
Digital Metaphor…Could I get your DADE plugin to test with? Please send it to
support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
I'll get SQLAnywhere up and running to test it. Thanks for your patience.
Cheers,
Jim Bennett
Digital Metaphors
What version of RB are you using? Try testing with RB 6.03 available from
www.digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
Which printer are you currently using? Try upgrading to the latest printer
driver to see if that solves the issue.
--
Cheers,
Alexander Kramnik
Digital Metaphors
You should be safe to use TppPrinter.pas. It is an integral part of
ReportBuilder, though it is undocumented. .
Cheers,
Jim Bennett
Digital Metaphors
Not sure if you can appean with PDFs. You can print the reports as one
report by using two Sectionstyle subreports inbedded in an empty main report
which just has one detail band containing those subreports. See your
installed \RBui…Try toggling the chart's PrintMethod property.
Cheers,
Jim Bennett
Digital Metaphors
It is probably slower because the printer driver is being initialized. You
can call Report.Printer.Initialize to do this when you application
initializes, so you won't see the slowness when you create the first report.
Ch…Why are the individual components in their own regions? If you want the
contents of all of them to stick together put them all in one region.
Regions within regions are not supported.
--
Cheers,
Alexander Kramnik…Apparently, the latest IBX version has introduced a new problem which our
patch doesn't handle. We are still researching the issue. Thankyou for your
patience.
Cheers,
Jim Bennett
Digital Metaphors
Try placing the reports into two child subreports of an empty main report so
that they print as one print job. See the Subreport.PritnBehavior property.
Child type subreports print much like memos do. Section style subreports
always…Where is (are) the pipeline(s) located? Is it possible that the chart simply
cannot reconnect to the pipeline when the chart is loaded? Can you create a
simple demo which has this behavior and send it to
support@digital-metaphors.com.…Which version of TeeChart do you have? RB6.03 is fully compatible with
TeeChart 5.02a. You can check if the pipeline name is being streamed down
properly with the form by viewing the form as text after having saved it.
Find the TeeCha…