I think u'll have to put a Region in the detail band, put your fields on that region. Then you can control the background color of the region giving the detail band that color. This way you can even implement alternate colors for the detail band giving it a very standard look.
Comments
that region. Then you can control the background color of the region giving
the detail band that color.
This way you can even implement alternate colors for the detail band giving
it a very standard look.
HTH,
Vikram
procedure TForm1.ppDetailBand1BeforePrint(Sender: TObject);
begin
if (ppReport1.DataPipeline['Company'] = 'Sight Diver') then
ppShape1.Brush.Color := clRed
else
ppShape1.Brush.Color := clWhite;
end;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com