Board index » delphi » End of file use with tab delimited text file
Jamie VanGulck
![]() Delphi Developer |
Sun, 12 Sep 2004 21:03:09 GMT
End of file use with tab delimited text file
Hello,
The following program works great for me if my 'txtFile' has the following 1 However, I need my program to read the first number from a 'txtFile' that 1 10 Could anyone suggest a way that I can change my program (listed below) to do Thank you in advance var AssignFile(txtFile, filePath); while not Eof(txtFile) do Edit1.text:= IntToStr(Num); |