Hi there!

I am using API functions : OemToChar and CharToOem to convert some dbase/foxpro database values.

Everything seems to convert kike it should except for capital letters with accent.

ex.: when I try converting caracters like "È", "É", "À", it returns "+".

I really don't get it... is it my computer codepage that is not valid ot what? Thank you.

Here is the declaration of my functions :

Private Declare Sub OemToChar Lib "user32" Alias "OemToCharA" (ByVal StrFrom As String, ByVal StrTo As String)

Private Declare Sub CharToOem Lib "user32" Alias "CharToOemA" (ByVal StrFrom As String, ByVal StrTo As String)

Dan