Discussion:
Store eurosign in memofield
(too old to reply)
Rob Boymans
2005-04-01 14:00:33 UTC
Permalink
After I stored the euro sign € into a memofield, it changes to Ç

Any suggestions

thx

Rob
Rick Bean
2005-04-01 18:11:54 UTC
Permalink
Rob,
I'd guess that you aren't using the same font to display the memo field as you are when it's entered. The character value is probably the same, but the display font doesn't support the euro character for this value.

Rick
Post by Rob Boymans
After I stored the euro sign € into a memofield, it changes to Ç
Any suggestions
thx
Rob
Olaf Doschke
2005-04-03 13:39:53 UTC
Permalink
After I stored the euro sign € into a memofield, it changes to Ç
May be a code page issue.

What Codepage is the memo field?
?CPCURRENT()
?CPDBF("myTable")
or
DISPLAY STRUCTURE

You can prevent any codepage conversions, if
you make the memo a binary memo field:
create table...(mMemo M nocptrans).

I wonder though, if this is a codepage issue,
as the euro sign has become a standard ascii
sign CHR(128), which should work in any
codepage. ?!?

Bye, Olaf.
Dennis Longfellow
2005-04-04 14:28:43 UTC
Permalink
Olaf,
Post by Olaf Doschke
I wonder though, if this is a codepage issue,
as the euro sign has become a standard ascii
sign CHR(128), which should work in any
codepage. ?!?
This is one of the reasons that I read through the newsgroups everyday.

I appreciate your input to these news groups.

Dennis Longfellow
Rob Boymans
2005-04-06 05:07:09 UTC
Permalink
Post by Olaf Doschke
Post by Rob Boymans
After I stored the euro sign € into a memofield, it changes to Ç
May be a code page issue.
What Codepage is the memo field?
?CPCURRENT()
?CPDBF("myTable")
or
DISPLAY STRUCTURE
You can prevent any codepage conversions, if
create table...(mMemo M nocptrans).
I wonder though, if this is a codepage issue,
as the euro sign has become a standard ascii
sign CHR(128), which should work in any
codepage. ?!?
Bye, Olaf.
thx,

it works,

Rob

Loading...