I think, no.
In my case I used a special Report Section with Bold set to TRUE.
So, it shows to output when some expression was calculated. In other case a section with normal format was outputed.
2 Report Sections:
1st section with normal font shows when some expression is False:
Footer Text, Body (3) - OnPreSection()
CurrReport.SHOWOUTPUT := ("Footer Text".COUNT > 0) AND (PrintFooterLine) AND (NOT "Footer Text".Bold);
2nd section with bold font shows when some expression is True:
Footer Text, Body (2) - OnPreSection()
CurrReport.SHOWOUTPUT := ("Footer Text".COUNT > 0) AND (PrintFooterLine) AND ("Footer Text".Bold);
Answers
In my case I used a special Report Section with Bold set to TRUE.
So, it shows to output when some expression was calculated. In other case a section with normal format was outputed.
Follow my blog at http://x-dynamics.blogspot.com
hows the code looking like ?
1st section with normal font shows when some expression is False:
Footer Text, Body (3) - OnPreSection()
CurrReport.SHOWOUTPUT := ("Footer Text".COUNT > 0) AND (PrintFooterLine) AND (NOT "Footer Text".Bold);
2nd section with bold font shows when some expression is True:
Footer Text, Body (2) - OnPreSection()
CurrReport.SHOWOUTPUT := ("Footer Text".COUNT > 0) AND (PrintFooterLine) AND ("Footer Text".Bold);
Hope you understand the idea.
Follow my blog at http://x-dynamics.blogspot.com
what a shame, i should have thought of it!
a million thanks!