Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Email using mailto
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00924485
Message ID:
00925021
Vues:
35
Sergey

>I think it should be
>lcText = chrtran( lcText, chr(13)+chr(10), "%0d%0a" )
That's not going to work. Since you are converting one character to 3 characters it's going to take two strtran() calls.
lcText = strtran( lcText, chr(13), "%0d" )
lcText = strtran( lcText, cht(10), "%0a" )
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform