Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
ALINES doesn't like multiple CHR(13)
Message
De
13/11/2000 18:24:58
 
 
À
13/11/2000 18:09:58
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00441348
Message ID:
00441360
Vues:
8
>Has anybody else run into this, and if so do you know of a way to work around it? I'd like to use ALINES and then APPEND FROM ARRAY.

Yep, always use a CRLF instead of just a CR. I hit this while doing mhHTMLCode:

lcString = 'mikes' + chr(13) + chr(13) + 'test'
alines(aA, lcString)


2 elements, Mikes and Test

lcString = 'mikes' + chr(13) + chr(10) + chr(13) + chr(10) + 'test'
alines(aA, lcString)


3 elements, Mikes, [blank], and Test. Is that what you need?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform