Is it possible to open a file and insert data and re-save it? I have the following
. Then I
then loop through looking for a specific line, examine it & compare that part with an SQL View. So far, so good. What I want to be able to do is, where there's a match between the line and the SQL View, be able to write a field from the View back into the file at the next line (which is always blank at the moment). How can I write this data (that I've got working with my code OK) back to the file & save it?
Many thanks,
Des.
Code:
Open Filename For Input Access Read As #1
Code:
Do Until EOF(1)
Line Input #1
Many thanks,
Des.