G
Guest
Hello all,
DoCmd.TransferText acExportFixed, "ForecastSpec", "qrExport", "c:\testNew.txt"
I am using this command above and it works fine. The question I have is I
need to add a end line (A*T) to the file that I created. Is there a better
way to add this besides me re-opening the file like:
Open "c:\testNew.txt" For Input As #1
and reading/printing through until eof then adding the last line I need?
DoCmd.TransferText acExportFixed, "ForecastSpec", "qrExport", "c:\testNew.txt"
I am using this command above and it works fine. The question I have is I
need to add a end line (A*T) to the file that I created. Is there a better
way to add this besides me re-opening the file like:
Open "c:\testNew.txt" For Input As #1
and reading/printing through until eof then adding the last line I need?