Hi,
I`m creating a text file, using a number of string variables as the source information. Does anyone know how I can get the "" surrounding each output line to be omitted when writing to the text file. I have used the following method to create and populate the text file.
----------------------------------------------------------
Open prefile For Output As #1
Write #1, "1" & Chr(9) & Format(Now(), "dd-mm-yyyy"
Write #1, rst!Field.Value & Chr(9) & rst!field2.Value & Chr(9) & rst!Month
Close #1
----------------------------------------------------------
Any help would be gratefully appreciated.
Thanks
Ian
I`m creating a text file, using a number of string variables as the source information. Does anyone know how I can get the "" surrounding each output line to be omitted when writing to the text file. I have used the following method to create and populate the text file.
----------------------------------------------------------
Open prefile For Output As #1
Write #1, "1" & Chr(9) & Format(Now(), "dd-mm-yyyy"
Write #1, rst!Field.Value & Chr(9) & rst!field2.Value & Chr(9) & rst!Month
Close #1
----------------------------------------------------------
Any help would be gratefully appreciated.
Thanks
Ian