Superscript,subscript etc.

Hi
How to use subscript or superscript in part of table field in LL13. For example I want to print area of some apartment which is 80m2 in field. How to print 2 as superscript? To be above m?
In C++ i send field value while printing report like this:
LlDefineField (m_hJob, _T(“SomeFieldForArea”), _T(“20 m2”));

Is this possible in LL13 or LL14? Same question is for subscript letters.

Second question is for greek alphabet. I can print for example copyright logo but when I send greek letter i get only “??” printed…
LlDefineField (m_hJob, _T(“SomeField”), _T("\x00A9")); \ copyright logo printed successfully
LlDefineField (m_hJob, _T(“SomeField”), _T("\x0398")); \ greek letter theta printed as question mark

a) you must use the correct font code points (superscript 2=ANSI
0x00b2, superscript 3=0x00b3).
b) does your font include greek characters?

I assume you use Unicode LL13?

Paulchen

“Marko Vucak” <vucakmarko@gmai…> wrote in message
news:48456102200810522@combit.net…

Hi
How to use subscript or superscript in part of table field in LL13.
For example I want to print area of some apartment which is 80m2 in
field. How to print 2 as superscript? To be above m?
In C++ i send field value while printing report like this:
LlDefineField (m_hJob, _T(“SomeFieldForArea”), _T(“20 m2”));

Is this possible in LL13 or LL14? Same question is for subscript
letters.

Second question is for greek alphabet. I can print for example
copyright logo but when I send greek letter i get only “??”
printed…
LlDefineField (m_hJob, _T(“SomeField”), _T(“\x00A9”)); \ copyright
logo printed successfully
LlDefineField (m_hJob, _T(“SomeField”), _T(“\x0398”)); \ greek
letter theta printed as question mark