Hi

I seem to be hitting some limits on the Get statement when reading in a text file > 2GB in binary.

eg. Get #ff, byte position/number, buffer

When byte position is > 2,147,000,000 I get the error bad record number, I presume as the Get function was built using something similar to a long to hold the the byte number which has a maximum value of 2,147,000,000.

Unfortunately, I need to be able to read in large text files fast, and line input is just not up to the job due to speed issues, and byte arrays seem to max out >400MB and <500MB. Are there any other options?