How to have printout with large font on page/field header or if possible
on field data just using TCL or/and R/Basic command only?
Can anyone assist me on this, please.
Write a symbolic which prints the escape codes (bold), then displays the data, then undoes the escape codes (unbold).
Print the symbolic instead of the regular data.
If you want to print the whole report in a different font, then create a symbolic (use it as the first column data item ) which simply sets the font required. You'll need a data item in the last column to unset the font.
0001 *
0002 ESC =CHAR(27)
0003 FLOAT =ESC: "(s1P"
0004 POINT.8 =ESC: "(s8V"
0005 POINT.9 =ESC: "(s9V"
0006 POINT.10 =ESC: "(s10V"
0007 POINT.11 =ESC: "(s11V"
0008 POINT.12 =ESC: "(s12V"
0009 POINT.14 =ESC: "(s14V"
0010 POINT.16 =ESC: "(s16V"
0011 POINT.18 =ESC: "(s18V"
0012 POINT.20 =ESC: "(s20V"
0013 POINT.24 =ESC: "(s24V"
0014 *
0015 printer on
0016 print float:point.12:"This is FLOAT POINT.12"
0017 print float:point.24:"This is FLOAT POINT.24"
Thanks you much Richard