http://bugs.winehq.org/show_bug.cgi?id=59908 Janne <janne.kekkonen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |janne.kekkonen@gmail.com --- Comment #3 from Janne <janne.kekkonen@gmail.com> --- Hello, tested this with fresh 32-bit prefix on Wine 11.11. .NET was not installed. The application was compiled with Microsoft.NET Framework version 4.0.30319, on Windows 11. Command used to build application: C:\Windows\Microsoft.NET\Framework\v4.0.30319\vbc.exe /target:exe /out:test32.exe test.vb 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 I tested the application with a 4-line test.txt file, where the third line is 5,069 characters long. The application successfully displays the length information for lines 1 through 3, but it exits immediately after the third message box. -- 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.