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.