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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Euro symbol

Status
Not open for further replies.

apffal

Technical User
Apr 10, 2004
97
PT
I've converted an Access table to FoxPro 6.0
Now, in that table, euro symbol has changed to "?" - and when I try to correct it, gives me a "Ç".
What can I do ?
Thanks.
 
What the Euro Symbol looks like often has more to do with the font being used rather than the underlying character value. Have you tried changing the font?

Rick
 

Try changing one record (before changing all of them) with
Code:
select mytable 
update alias() set currenc = chr(128) && which is suppose to be a € sign

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
I've got the solution with

USE TABLE
COPY TO TABLE2 AS 1252

Thanks anyway
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top