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