‎2006 Aug 22 5:17 AM
Is there any way to display specific field values( in list display) in BOLD format apart from giving colors.
Thanks in advance..
‎2006 Aug 22 5:22 AM
‎2006 Aug 22 5:28 AM
Hi Mohankumar,
It is not possible to get Bold characters using write statement. But, you can get your text highlighted using the addition INTENSIFIED.
e.g.
Format INTENSIFIED ON.
WRITE 'Text1'.
Format INTENSIFIED OFF.
Effect
Intensified - affects the background color.
Each color exists in a normal (desaturated) and in an intensified (saturated) form. ... INTENSIFIED takes the current background color from the "intensified" palette, while the ... INTENSIFIED OFF uses the "normal" palette.
Note :
Every time a new event ( START-OF-SELECTION, TOP-OF-PAGE, ...) is started, the system setting reverts to ... INTENSIFIED /color palette: "output field intensified", IntNorm).
On a standard background (COLOR COL_BACKGROUND), the foreground color may be affected in certain cases.
If, for example, you use the addition ... INVERSE, the addition is ... INTENSIFIED.
Hope this helps,
Regards,
Pragya
‎2006 Aug 22 5:28 AM
Did you try
FORMAT INTENSIFIED ON.
Now all the WRITE statement following this, the data will be in BOLD.
Regards,
Ravi
Note : Please mark all the helpful answers