How to bold text (return value) in function, which is displayed on report. [message #399429] |
Wed, 22 April 2009 03:08 |
adnanBIH
Messages: 41 Registered: November 2007 Location: BiH, Sarajevo
|
Member |
|
|
Hello everyone, i have a function which returns value to a field, on report. The value is a text, which is changed dynamically. I would like to bold some part of text, depending on some conditions.
How can I achieve that, I tried to insert html tags
(<b> bolded text </b>), and also tried to use chr() function, but it couldn't work.
For example, this is return part of function:
function CF_partIFormula return Char is
begin
return('text <b>text</b> text');
end;
OR
function CF_partIFormula return Char is
begin
'||$chr(2) $+||' ZAHTJEV '||$+$chr(2)||'
end;
Thanks in advance.
|
|
|
|