Any ideas why I can create a text file in blitzplus, upload it to a ftp and use httpget to download the file from a blitz+ app and it works fine but if I create the text file in notepad,wordpad or anything other then blitz the formatting gets all screwed up when I download the file.
httpget losing format
BlitzPlus Forums/BlitzPlus Programming/httpget losing format Ascii mode ftp mode transfer is most likely linuxizing your end of lines. Try switching to binary ftp transfer.
End of lines:
Linux: chr(13)
Win: chr(13) + chr(10)
Linux: chr(13)
Win: chr(13) + chr(10)