digitalmetaphors
Comments
-
The esaiest way is to set Report.Detailband.PrintCount := 10.
Cheers,
Jim Bennett
Digital Metaphors
-
Use the Report.DetailBand.PrintCount property.
Cheers,
Jim Bennett
Digital Metaphors
-
Try Report.ShowPrintDialog := False;
Cheers,
Jim Bennett
Digital Metaphors
-
Be sure to reassign any event handlers to the report, after you load each
report template (rtm) into the report component. This is most likely the
problem.
Cheers,
Jim Bennett
Digital Metaphors
-
You're right, you have to code an event handler for each report component in
your app to get a 100% zoomed preview screen. I've added a new property on
the report component which will allow you to configure the preview form at
Delphi… -
You can control the built-in preview form via the Report.OnPreviewFormCreate
event.
For example the following code sets the Print Preview form to maximized and
sets the Viewer ZoomSetting to 100%:
procedure TForm1.ppR… -
Set the Report.SavePrinterSetup property to true.
Cheers,
Jim Bennett
Digital Metaphors
-
Have you run through the extensive crosstab demos? They mainly show how to
change the formatting of the crosstab cells as they generate.
..\Delphi\RBuilder\Demos\Crosstabs
Yes, perhaps in a future version it would be a good idea… -
The spacing is calculated internal to the crosstab renderer. You can create
a descendent crosstab renderer and register it over the default one. I was
hoping to suggest that you could override the CalcSpaceUsed method and
perform you… -
There is no real difference if you are coding Delphi event handlers. The
bracket notation ( plOrders['AmountPaid'] ) to get the field value from the
datapipeline was developed for RAP, though it works perfectly well in Delphi
event h… -
Here is an example which makes the print button invisible on the preview
form.
http://www.digital-metaphors.com/tips/PreviewPlugin.zip
If anyone would like to have this patch, please send an email with your
valid email address to support@digital-metaphors.com and we'll get it to
you.
Cheers,
Jim Bennett
Digital Metaphors
We're sending you the patch.
Cheers,
Jim Bennett
Digital Metaphors
You have mail.
Cheers,
Jim Bennett
Digital Metaphors
Fikret, I'm sending you the patch via email.
Cheers,
Jim Bennett
Digital Metaphors
I have been running the UpdatePack without any problems. However, there is
bug that has been confirmed and fixed. Borland's new update pack rasies an
exception if your key linking field value for your master detail dataset is
NULL. …Does the WMF print from another application to the same printer? RB makes
different API calls to print to the printer, than does M$ Word or Excel.
Therefore, if the printer driver manufacturer fails to fully support all the
valid cal…When are you setting the detail band visibility? If the group header has
already printed, then you are out of luck. The only way to fix this is to
remove the draw commands associated with the header band, when the current
page genera…It was a D6 UpdatePack #2 issue. The problem has been fixed for the next
maintenance release and I've emailed you the patch unit.
Cheers,
Jim Bennett
Digital Metaphors
It's been confirmed to happen only when you have the Delphi 6 update pack
#2. Thanks for reporting this. We'll get it fixed.
Cheers,
Jim Bennett
Digital Metaphors
The demo runs fine here. It sounds as if you've run out of memory and the
BDE has gone south on you. If you shutdown Delphi and run it again, it
should begin working..
Cheers,
Jim Bennett
Digital Metaphors…There is no such setting to change the ruler start setting. You'll have to
make do by subtracting the margin. Thanks for the suggestion.
Cheers,
Jim Bennett
Digital Metaphors
There is also a demo which shows how to create a spread sheet style report
with subreport, and reordering the pages so that each subreports can print
different fields for each record.
in JIM- WIDE ?? Why Not ? Comment by digitalmetaphors March 2002You may want to create a section style subreport (Subeport.PrintBehavior :=
pbSection), one for each page that you want show which breaks over multiple
pages. The section style subreport forces a page break and can provide you
with a…It isn't currently supported for 4.04. You'll need to upgrade to the latest
version from TeeChart (5.02) for Delphi 6 in order to set the datapipeline
for a DBChart.
Cheers,
Jim Bennett
Digital Metaphors
There isn't a print order, the title band prints before the header band in
all cases. You have two options that I can think of.
1. Create a group on a custom field liek a label, that never breaks. Use the
single group header ba…Once you have them in a region, there is a Region.KeepTogether property
which you need to set.
Cheers,
Jim Bennett
Digital Metaphors
The check box is a wingdings font. If you go into Word, and I think it is
under Wingdings2 and type the letter R, you should get the checked checkbox.
Does this print on the PCL printer? If not, then unfotunately it is a
limitation …This is intentional on the text file device, so that you don't get a CRLF at
the last line. You'll have to add the CRLF before the first when you append
to the text file. You could use the Report.OnPrintDialogClose event to
read th…Can you change your library path to point to \RBuilder\Source and see when
it tries to retrieve the first record? My test report seems to work for a
JIT with no data. Perhaps, send us a simple example to
support@digital-metaphors.co…