Home General

Conditional formatting

edited August 2017 in General
Is it possible to setup a conditional formatting for a dbtext, i.e. on
value field1='5' value of field6 is meant to be bold?

--


Hint: We altered the sources!Hint: We altered the sources!

Comments

  • edited August 2017
    Hi Carsten,

    This can easily be done using Delphi or RAP code. In RAP, your code
    might look something like the following...

    procedure DetailBeforePrint;
    begin
    DBText2.Font.Bold := (orders['CustNo'] = 1221);

    end;

    --
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.