Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Simiple I think CR & LF
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01271857
Message ID:
01271871
Views:
11
This message has been marked as a message which has helped to the initial question of the thread.
>Yes, check the last two characters, but the code should be
>
>IF RIGHT(lcData, 2) = CHR(13) + CHR(10)
>
>
>>I am listening on a tcp/ip port for this other system(vendor) to send a file. I don't know how long the file is, only that
>>"at the end of the file will be a carriage return AND a line feed. "
>>
>>
>>Would I just check the last two chars = chr(13) and chr(10)
>>
>>if right(lcData)=chr(13)+chr(10)
>>   * End of file
>>else
>>   * not end of file
>>endif
>>
>>
>>
>>Thanks for any help

You might want to trim lcData in case it has spaces..

IF RIGHT(trim(lcData), 2) = CHR(13) + CHR(10)
____________________________________

Don't Tread on Me

Overthrow the federal government NOW!
____________________________________
Previous
Reply
Map
View

Click here to load this message in the networking platform