Alternating lines in green/white in PreviewForm?
One of my users is a little shortsighted and would love to view his reports
in the preview form (at 100% zoom) in alternating lines in green / white or
similar. This would allow him to scan the preview report from side to side
and easily keep track of his position in the report.
1. Is there some (simple) way of doing this?
2. Could you suggest an alternate idea I can use?
THANKS!
Best regards,
Ray
Note: I'm using Delphi v5 with ReportBuilder Enterprise v6.
in the preview form (at 100% zoom) in alternating lines in green / white or
similar. This would allow him to scan the preview report from side to side
and easily keep track of his position in the report.
1. Is there some (simple) way of doing this?
2. Could you suggest an alternate idea I can use?
THANKS!
Best regards,
Ray
Note: I'm using Delphi v5 with ReportBuilder Enterprise v6.
This discussion has been closed.
Comments
the background and size it.
. In the component's .OnPrint event, code something like:
procedure TForm1.ppLine1Print(Sender: TObject);
begin
ppLine1.Visible := (Table1.REcNo mod 2 = 0);
end;
where ppBDEPipeline1 is the Table1 is the dataset for the report. If you are
using a JIT pipeline, use the pipline's RecordIndex property.
HTH
Ed Dressel
Team DM
bands only show up on the screen (and not on the printed page):
procedure Shape1OnPrint;
begin
if Report.DeviceType = dtScreen
then Shape1.Visible := (Detail.Count mod 2 = 0)
else Shape1.Visible := False;
end;
My user is going to love this! Thanks.
Best regards,
Ray