digitalmetaphors
Comments
-
You'll have to set the page height of the report to be able to fit all of
the detail bands which fit. This will result in a single page which
includes the entire report. This height can be calculated beforehand by
multiplying the st… -
The subreports are printing as designed. The section style subreports print
order is based upon their ZOrdering in the band and not on their relative
position in the band. You can change their ZOrder by using SendToBack and
BringToF… -
You could also create two reports. One report is for screen previewing and
the other report is for printing on the printer. The screen report would
have the increased page size so that the viewer would be able to show
everythign as … -
Yes, there is a trick. You have to generate the report with subreports to a
cache in a generic device. It will use the default driver to determine the
pagination. Once the pages are in the cahce, then you can reorder the pages
from… -
Make sure that the controls are contained in the region by checking the
report tree or by moving the region around. The region should be able to
keep these components together. If not, then can you send us a simple
exmaple which repr… -
Additionally, a visual repository of reports would be a nice feature to
have, especially from an end user's standpoint. It is possible to replace
the new report dialog (all forms in RB are replaceable) and have it show
icons for diff… -
You could create a descendent of TppReport which can be used in the report
designer at runtime to create new reports. See code below. Place the code
your would like in the constructor, then you can create reports based off of
this r… -
B. You can compile your application with run time packages, just as you
would in any Delphi app. This would let you make your app more dynamic in
that you could replace the report package at a later time if you setup the
app's archit… -
One thing you can do is set the PrinterName of the Report's PrinterSetup
property to Screen.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
There area number of ways of linking the datasets. You can use the
MasterSource/MasterFields to specify linking fields for the tables. You can
also link the pipelines using the MasterDataPipeline/MasterFieldLinks
properties on the pip… -
Sorry, it is of type TdaDataModule in the unit daDataModule.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
You actually need to go through the dataviews and reset them to force them
to reretrieve data. Here is a method which will accomplish this for you. You
still should call Report.Reset, especially if you are caching pages.
procedu… -
Hi Mark,
Still cannot reproduce it. RB6.03, tested with D5 and D6 with Interbase.
Record 2 is "Jane " and record 3 is "Jane". Both DBCalcs sum out to 21. Can
you please send your project to support@digital-metaphors.com.
I reproduced your example by following the steps below but was not able to
reproduce the problem. The sum came out to 21 in both cases. What were the
sums you got the second time around? The only known problem that causes
DBCalcs to n…Take a look at WPTool, http://www.wptools.de/. They have components capable
of that.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Check out the Custom Formatting demo in the main crosstabs demo application
(RBuilder\Demos\Crosstab, Demo #126).
--
Cheers,
Alexander Kramnik
Digital Metaphors
Check out the Address Sqeeze demo in the main Reports demo
(RBuilder\Demos\Report, Demo # 33)
--
Cheers,
Alexander Kramnik
Digital Metaphors
To disconnect the datapipeline from the main report either clear the
DataPipeline property in the Object Inspector or select Report | Data and
set to . However, for a simple report like this you still shouldn't
need a subreport. Since…How are you verifying that your queries are correct? The best way to do that
is to place a grid on the form for everyone of your data source. You can
then go through the master grid and verify that each of the detail data
sources is r…Check out the demo below for an example of linking standard pipelines to
dade pipelines:
http://www.digital-metaphors.com/tips/LinkStandard…The templates should get converted automatically. Below are some guidelines
that should help you figure out why your report is generating endless pages.
As far as the reports which are generating multiple pages go, why are they
multip…> [Alexander]
Is there any code that is fired after the template loads that is changing
the SaveTo or other settings which determine where the template is being
saved to. My other question is whether you are using the desig…Here's some things to check for:
Do the users have permission to write to the disk?
Are the template settings changed after it is loaded or after the user
creates a new report that would prevent it from being saved properly?
You can create a custom preview which will take on this as the default
behavior. Take a look at the custom preview demo below.
http://www.digital-metaph…Is the group set to KeepTogether? In the case when it is previewed first
then printed, does the problem occur only after it has printed or also in
the preview. If the preview is ok then you could set Cache Pages to true.
Another thing…We've confirmed this as a bug. As a workaround until we can address this,
you can put the rest of the components into a region and set the region to
ShiftWithParent. Thanks for bringing this to out attention.
--
Cheers,
I am able to print either high or low quality successfully. See
http://www.hp.com/cposupport/swindexes/dj694c_swen.html to reinstall the
latest driver for…Which printer driver are you using? Make sure you have the latest version of
the printer driver installed. I've tested this with a few of the printer
drivers we have installed here without any problem. I can test with with the
specifi…Which settings in particular are being defaulted. You can set
SavePrinterSetup so that the printer setup is saved subsequently.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Even in an end user report, behind the scenes, pipelines and tables are
created and data is cached. You can manually go through the data view's and
close their pipelines. Do you have any code executing with the report? If
so, are you …