Ma solution a été d'utiliser STRTRAN( )
Je scan tout les champs et je convertis un a un les caractères qui ne s'affichent pas correctement, ça donne quelque chose comme cela.
Replace nom With Strtran(nom,'é','é'),;
nom With Strtran(nom,'ê','ê'),;
nom With Strtran(nom,'è','è'),;
nom With Strtran(nom,'î','î'),;
nom With Strtran(nom,'ô','ô'),;
nom With Strtran(nom,'â','â'),;
nom With Strtran(nom,' Ã ', ' à '),;
nom With Strtran(nom,'É','É');
all
C'est assez rapide et ça fonctionne.
|