> Is there any way in a detail band that I can highlight one row of fields if
Yes... using RAP (or code in Delphi--I will explain the RAP way, extrapolate to Delphi)
1) Drop a TppShape on the band and configure it as you need (color, size, pen, send to background). 2) In the 'Calc' tab (assumes you have the Enterprise version), use the following code:
if MyConditionMet then MyShapeName.Visible := True else MyShapeName.Visible := False;
Comments
if
Yes... using RAP (or code in Delphi--I will explain the RAP way, extrapolate
to Delphi)
1) Drop a TppShape on the band and configure it as you need (color, size,
pen, send to background).
2) In the 'Calc' tab (assumes you have the Enterprise version), use the
following code:
if MyConditionMet then
MyShapeName.Visible := True
else
MyShapeName.Visible := False;
Ed Dressel