Here's how the file opens in Notepad++:
https://www.mediafire.com/view/bjk0a3qa ... P.png/file
Code: Select all
CRLF.s = Chr($D) + Chr($A) + Chr($D) + Chr($A)
InFile.s = "Dummy.txt"
Test.s = ""
If ReadFile(0, InFile)
While Eof(0) = 0
Test = ReadString(0)
If FindString(Test, CRLF)
Debug "FOUND IT!!!"
Else
Debug "WTF???"
Endif
Wend
CloseFile(0)
Endif
Dave