digitalmetaphors
Comments
-
Yes, you can use a shape or region component to do this. For example:
procedure TForm1.ppDetailBand1BeforePrint(Sender: TObject);
begin
if (ppReport1.DataPipeline['Company'] = 'Sight Diver') then
ppShape1.Brush… -
For left to right column traversal, you can trick the engine into moving to
the first column of the next row. For an example, I created a simple group
in my left to right columnar report. Because the default behavior is that
the group… -
Please see my response to your previous post:
Cheers,
Jim Bennett
Digital Metaphors
"What version or RB and Delphi are you using? Try using RB 7 for Delphi 6,
as it includes a fix for this. If… -
Chirs, I've put this demo on our website for download with http. It is
located at
http://www.digital-metaphors.com/tips/HidePrintButtonPlugin.z… -
It depends on when you purchased RB 6. Have a look on our website's order
page to see our upgrade policy. www.digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
-
The autosearch criteria can be manipulated in the same way. There is a demo
in the autosearch demo directory which show how to modify the search
criteria at runtime for reports stored in an end user database.
This was posted in… -
Here's some sample code:
DBText := TppDBText.Create(Self);
DBText.Band := aReport.GetBand(btDetail, 0); {detail band}
DBText.Left := 2.5625;
DBText.Top := 0.0313;
DBText.Width := 0.625;
DBText.DataPipe… -
This has been fixed for the next release.
Cheers,
Jim Bennett
Digital Metaphors
-
Yes, we can reproduce it here. We'll work on a fix. Thanks for reporting it.
Cheers,
Jim Bennett
Digital Metaphors
-
We've sent you a patch.
Cheers,
Jim Bennett
Digital Metaphors
-
Do not recompile any RB packages. Any patches which need to be applied are
only intended to work at runtime using the source pas files. Some patches
have a change to the implementation sectin and cannot be recompiled with RAP
linked i… -
You can use one event handler because this way the eent gets fired once for
every detail record. You can then use this to update the variable in the
main report. The variables only calculate based on the record change of he
report tha… -
You can also use TppVariables and in the OnCalc evnet handler of the
variable in the subreport, update the value of a variable in the main
report. This way you'll only have one event handler that updates both the
variable in the subre… -
Here is an example which shows how to move the draw command down on the
page. This demo contrives a case where there is only one memo on the page.
It let's the band generate the memo normally. When the page ends, check the
group foo… -
RB does not reinstall any drivers. Can you repeat this behavior using our RB
demo reports? If it is reproducable on these printers, then can you tell us
what printer models you are printing to? Are the latest printer drivers
install… -
I'm using RB 7, Teechart 5.02, Delphi 6 SP2 and Win2k and it seems to work
correctly. Are you using Teechart 5.02 for Delphi 6 or Teechart 4.04? If
you are usign Teechart 5.02, can you send us a demo chart which doesn't work
to suppo… -
One solution is to use the Paintbox component available from our website so
that you can draw in the report.
http://www.digital-metaphors.com/rcl/twpaintbox.zip… -
Yes, it should do this automatically. But, we can reproduce the problem.
We'll put it on the maintenance list to be fixed in a future release.
Thankyou for your patience.
Cheers,
Jim Bennett
Digital Metapho… -
Please send an email to info@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
-
You should be able to use the latest GIFimage available and it should work.
Get the latest version that you can off of the web.
Cheers,
Jim Bennett
Digital Metaphors
-
There is a demo (#107) in the main reports demo project which prints to the
report emulation text file. For the best results, you should use a fixed
width font such as courier new 8 point as shown in the demo. There have
been a few … -
The icon doesn't support this. It is going to by 32 pixels by 32 pixels. If
you preview on the screen at a different zoom setting, the icon will appear
the same, it isn't scaled. When it is sent to the printer, it will use 32
printer … -
Please send a very simple, working, example Delphi project which reproduces
the problem. Send it to support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
-
You are going to have to manually control the print process inorder to print
thepages in a backwards order. Here is an example to get you started which
prints a report backwards from the last page to the first page. What could
be don… -
The best chance to configure the printer setup is to create a singleton
object that you can pass every report from your curretnly instantiated form
to. This singleton would have been configured with the printer setup that
that the us… -
The timing is too late to do it in the Report.BeforePrint event. Set this
property after the report template is loaded. Use the
Report.Template.OnLoadEnd public event.
Cheers,
Jim Bennett
Digital Metaphor… -
I meant to say: use the cross tab configuration editor. Create rows instead
of columns. This way the crosstab will generate downwards. The alternative
is to create your own renderer. RB 7 does not have significant changes to
the cros… -
You can create the crosstab definition so that it generates this way. Make
the definitions row only and not column based. This should make the crosstab
generate downward. The cross tab renderer class controls how the crosstab
is ren… -
Please take a look at the crosstab demo #127 as it shows how to modify every
cell's text.
Cheers,
Jim Bennett
Digital Metaphors
-
I tried this in the end user environment and it correctly said that the item
could not be located. Do you have a corrupted end user item table?
If you are not using the end user environment, but are loading from the
database, t…