Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Different color for each line
rbuser
October 2008
edited October 2008
in
General
Hi,
My client request all report should have different background color for each
line.
just like one line is white and next line should be gray, then white again,
basically repeat white and gray backgroud pattern.
How can I do that?
Thanks
Jianfei
Comments
nicocizik
October 2008
edited October 2008
Hi Jianfei,
Place a shaded shape in the detail band and alternate its visibility in the
BeforePrint event.
if ppDetailBand1.Count mod 2 = 0 then
ppShape1.Visible := True
else
ppShape1.Visible := False;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
This discussion has been closed.
Comments
Place a shaded shape in the detail band and alternate its visibility in the
BeforePrint event.
if ppDetailBand1.Count mod 2 = 0 then
ppShape1.Visible := True
else
ppShape1.Visible := False;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com