> Hi Mike,
>
> Can you tell me how you did that?
> I have to save (and retrieve) polish text in a Windows Ansi environment and I can't get it to work.
> I have use the MS Form TextBox to do the input. I can paste polish characters into the textbox and they are still visible as polish characters. But no matter what I do to save and retrieve it, I can't get it back in polish...
>
> Kind regard,
> Eric
> > Hi Guys,
> >
> > I need your input on this, I have already achieved to display Unicodes on Form (Save & Retrieve). But how about the report FRX, any advice is greatly appreciated.
> >
> >

> >
> >
> > Thanks.
> >
> > Kind regards,
> > Mike
You try to save / encode your data as binary, something like this:
Replace YourStringField with STRCONV(YourValue,13)
You need to add this COM Codepage translation also in your FORM.LOAD event if you are using a FORM:
=SYS(3101,65001)
If you want to display to MS Forms Textbox you need to do something like this:
Thisform.MSTextbox1.value = STRCONV(YourFieldValue,14)
Hope this helps.