Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem displaying french characters in dynamic text.

Status
Not open for further replies.

ZigDaPig

Programmer
Mar 13, 2005
3
BE
I'm have been looking at this problem for hours now,
but I can't seem to solve it so please have a look at this:


When I read in the following variable from a text file:

&RefText=%7E %A5 %E9&

And I display it in a dynamic text field as follows:

_level0.ContentText.htmlText = _level0.RefText;


I only get to see:

~ ¥

instead of

~ ¥ é

Even when I explicitly add the é character to the list of characters to be embedded, it won't work.


When I put this in the text file:

&RefText=é&

it also doesn't work.

The ONLY way I can get the dynamic text to show the character, is
by doing this:

_level0.ContentText.htmlText = "é";

But that's not very useful to me...


Any help would be great !
 
I don't know much about XML, but you might try changing your char-set




 
I'm dealing with a simialar problem, is that like in notepad, where it gives you the encoding type, which default is ANSI, in that drop down?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top