Board index » delphi » Loading in large, and I mean large, files
bl...@torfree.net (Arlo Smith)
![]() Delphi Developer |
Tue, 29 May 2001 03:00:00 GMT
Loading in large, and I mean large, files
Hello. I'm attempting to write a PGNreader and you really don't need to
know more about it other than PGN files are Chess Game text files routinely over 800k, in PGN format. Now, an existing PGNreader I have can load in a 800k game file easily ... the programmer can't be using what I'm using. And what am I using? Well, StringListname.loadfromfile(), for one, which basically can't handle the 800k file on my computer (I also tried AssignFile, Reset, Readln() and it's no better). Seems to load in a 300k file okay, but 800k makes the HD grind away getting nowhere. What is this OTHER programmer doing, er, using, since his program works fine on my computer? Definitely he loads the whole file--I moved the file while the program was -- |