Click to See Complete Forum and Search --> : write str to file


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

GaryC
January 18th, 1999, 03:37 AM
Use Print# instead.