PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WD19] How to save and redisplay currency symbol
[WD19] How to save and redisplay currency symbol
Iniciado por guest, 05,jun. 2017 17:14 - 2 respuestas
Publicado el 05,junio 2017 - 17:14
Hi all,

I have try to use BufferToHexa() and HexaToBuffer to save the currency symbol like this http://www.currencysymbols.in/

But no success to redisplay is again. It is display a question symbol "?".

In the file analysis my setting for the currency symbol is Text (String).

Any tips and correct way?

Thanks a lot.

Regards,
Mujahid
Publicado el 05,junio 2017 - 19:29
Hi

Converting to Hexa is probably unnecessary.
However, it is stated on the site that this is utf8, so either use utf8xxx functions, or (and maybe both) use uncideo strings and variables, as these symbols clearly are not all part of the regular ansi table.

Best regards
Publicado el 06,junio 2017 - 01:43
Hi Mr Fabrice,

Thanks for the idea.

Im success by using this.

Res is unsigned int
Res = HexaToInt(EDT_HexSimbol) // This is standard Hex Simbol from http://www.currencysymbols.in/

Trace(CaractUnicode(Res))

:):spos::spos::spos:

Regards,
Mujahid