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
Conditional formatting
rbuser
August 2017
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
nicocizik
August 2017
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.
Comments
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;
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com