
Reading first record of txt file??
If you open a file for sequential input, as it sounds you have, then read
past a line you later want to re-read, you'll need to close and reopen the
file, start at the beginning again, and reread the file until you get to the
line of interest.
--
Randy Birch, MVP Visual Basic
http://www.mvps.org/vbnet/
http://www.mvps.org/ccrp/
| How do a tell VB to get the first record in a text file that I opened for
| input.
| A EOF loop executed so the file is still at the last record, how can I
tell
| VB to go to the first record of that file?
|
| Sorry if this sounds like a stupid question but I am still new to
| programming
|
| Regards
| Jackie
|
|