I have a very big fixed length file to read into VB6 (record length 2201).
Each record is only terminated by a line feed and not cr/lf so line input does not work.
In binary mode it works until I reach byte 2,147,483,648 which I believe is the maximum length of a variable length string variable - and then I get "Error code 63: bad record number".
What other options are available to me to access this data? help!