> > There's a way to convert iso-8859 codepage/charset string to another?
>
> Maybe I not explain correct what I need.
>
> I'm receiving a string like this:
> =?iso-8859-1?Q?Atualiza=E7=E3o_do_anti-v=EDrus?=
>
This will get you started:
?"Atualiza" + CHR(0xE7) + CHR(0xE3) + "o_do_anti-v" + CHR(0xED) + "rus"
Carlos