George
January 15th, 1999, 04:40 PM
Hi: there
Here is code for writing string to file:
Dim fileFile As Integer
fileFile = FreeFile
Open strFile For Output As fileFile
Write #fileFile, "this is String"
Close fileFile
problem is that in the txt file, it will have 'quote' with the string, it's annoying, how can we make this not happen?
thanks
Here is code for writing string to file:
Dim fileFile As Integer
fileFile = FreeFile
Open strFile For Output As fileFile
Write #fileFile, "this is String"
Close fileFile
problem is that in the txt file, it will have 'quote' with the string, it's annoying, how can we make this not happen?
thanks