2008 May 21 10:39 AM
how to print the letters in bold format in classiscal reports
2008 May 21 10:45 AM
Hi,
use INTENSIHIED in WRITE statement to get list in BOLD letters.
FORMAT INTENSIFIED ON.
WRITE: / ...............
.....................
FORMAT INTENSIFIED OFF.
Reward if helpful.
Thanks.
2008 May 21 10:41 AM
before using the write statement use
Translate your_string to upper case.
2008 May 21 10:42 AM
Hi,
In classical report its is not possible to change the font of any letters..
Thanks,
Ramya.R
2008 May 21 10:45 AM
Hi,
use INTENSIHIED in WRITE statement to get list in BOLD letters.
FORMAT INTENSIFIED ON.
WRITE: / ...............
.....................
FORMAT INTENSIFIED OFF.
Reward if helpful.
Thanks.
2008 May 21 10:47 AM
Use the INTENSIFIED addition with write statement.
... INTENSIFIED [{ON|OFF}|{= flag}]
Effect
This addition determines the intensity of the background color. For flag, a data object of type i is expected. If ON is specified or if the content of flag is not equal to 0, an intensive background color is used (default setting). If OFF is specified or if the content of flag is equal to 0, a weak background color is used. An exception to this is the COL_BACKGROUND background color, with which INTENSIFIED OFF influences the foreground color. If neither ON, OFF nor flag are specified after INTENSIFIED, then the ON addition takes effect.
At the same time if the INPUT ON attribute is set, the INTENSIFIED OFF addition changes the foreground color of fields that are ready for input. If the INVERSE ON setting is made at the same time, the INTENSIFIED OFF setting has no effect (with the exception of COL_BACKGROUND).