I have a textfile a bit over 2 MB of size, and it takes painfully long to open it (almost 60 seconds). I'm using the following code to input the data:Is there some faster method of reading the data from the file?VB Code:
Open App.path & "\index" For Input As #FF Do Line Input #FF, inputString ' Read a line wholeLog = wholeLog & inputString & vbNewLine ' Append newly read line Loop Until EOF(FF) Close #FF
-JR-




Reply With Quote