Howdy!
I'm importing a large file (213 MB) and parsing it. My question is: does the VB6 Line Input read the whole file, then select out each line, or actually only read that line. I thought it was the second case, but when I'm reading this file, it stalls like no other. A similar smaller file works, but I'm not sure that it should make any difference. (And STD_PROCESSES.G en_Rec.Record_T ype is just a fixed length string*1000)
I'm importing a large file (213 MB) and parsing it. My question is: does the VB6 Line Input read the whole file, then select out each line, or actually only read that line. I thought it was the second case, but when I'm reading this file, it stalls like no other. A similar smaller file works, but I'm not sure that it should make any difference. (And STD_PROCESSES.G en_Rec.Record_T ype is just a fixed length string*1000)
Code:
Line Input #gInFile.hFile, STD_PROCESSES.Gen_Rec.Record_Type
Comment