Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ALINES doesn't like multiple CHR(13)
Message
From
13/11/2000 18:24:58
 
 
To
13/11/2000 18:09:58
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00441348
Message ID:
00441360
Views:
14
>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?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform