Board index » delphi » EOF returns true before accessed last record (Delphi 1)
Ian Dunn
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
EOF returns true before accessed last record (Delphi 1)
I am using Delphi 1 and am trying to copy all the info from one table
(Cases) to another with identical table (NewCases). The problem (which is not actually a very big problem it's just a bit worrying) is that when I use the Next and EOF methods in a while loop the loop finishes before the last item has been copied, so NewCases ends up with one less record than Cases. According to the help file this shouldn't happen. EOF should not be true with NewCases do begin Thanks in advance for any help, |