Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Detail band

edited May 2003 in General
Is there any way in a detail band that I can highlight one row of fields if
one of the fields has a certain value?

Comments

  • edited May 2003
    > 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;

    Ed Dressel
  • edited May 2003
    Thanks,
This discussion has been closed.