Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Email using mailto
Message
 
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00924485
Message ID:
00925021
Views:
36
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform