http://bugs.winehq.org/show_bug.cgi?id=59908 --- Comment #6 from horst53@mail.de --- Hello @Janne: Source code: Module Program Sub Main() FileOpen(1, "test.txt", OpenMode.Input) Do Until EOF(1) MsgBox(Len(LineInput(1))) Loop FileClose(1) End Sub End Module Your code should be useful to reproduce the problem. Please use more than three lines. In my case, End Of File came after a very long line. Just try 10000 chars to get sure. After that, the following lines were skipped. But: I rewrote my code using a StreamReader and also read line by line. This works perfectly. I use the latest wine on Ubuntu 26.04 LTS. If a reproduction should not be possible I can write a test EXE and TXT file, of course. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.