TextStream readline limitation to 60 Characters



Hi,

I'm using TextStream Object Readlint to read the Lines of a file using the code below. However it seams, that every Line is limited to 60 Characters. Does anybody know a reason for this. Linefeed is 0D 0A (Windows).

Thsnks

Gerd

set fsf = CreateObject("Scripting.FileSystemObject") set f = fsf.OpenTextFile(File.path ,1)

' File Loop
Do Until f.AtEndOfStream
l = f.ReadLine

.