Alain Aupeix writes
> Hi,
>
> As I was trying to translate tutor_eng.xml to french, I saw that there
> is a problem with encoding.
> I tried to add to add
>
> REQUEST HB_CODEPAGE_UTF8
> ...
> hwg_SetAppLocale( "UTF8" )
>
> But it doesn't solve the problem.
> It seems due to HCEdit, but I'm not sure.
> Is there a way to solve it ?
>
tutor.prg, line 196:
oText:SetText( oItem:cargo[2] )
Try to define the codepage of your file ( by default there is "EN" ).
If it is utf8, then:
oText:SetText( oItem:cargo[2], "UTF8" )
Regards, Alexander.
|