Hi Django,
believe it or not, file_load works correctly in this case. The problem is the data display. The generated output is in Unicode, MsgBox expects ASCII.
To handle this situation systematically, you can enhance your script with the following:
Unicode strings are part of my proposals for ThinBASIC 2.x series, we already talked about it with Eros.buffer = FILE_Load(t2) If IsUnicode(buffer) Then buffer = Unicode2Ascii(buffer) End If
Petr
Bookmarks