To find what you seek in the road of life,

the best proverb of all is that which says:

"Leave no stone unturned."

Edward Bulwer Lytton

S60 Code Example : How to Get a Euro Sign?

Here is how to display Euro Sign in your code.


TBuf<1> b;
b.SetLength(1);
b[0]=0x20ac;
CEikonEnv::Static()->InfoWinL(_L("Euro:"), b);

Note in some versions of SDK these phonetic symbols cannot be displayed for the time being. The very reason is that they are not included in the font library. As such, even you input the correct unicodes, however they are still not displayable.

One solution to your problem is to create your own font library to support those characters. Or, you can use some pictures to replace those characters.


0 comments: