Logging data using the same textfile over and over again
Hello Silencer,
Yust need to append the text to the existing text file.
Const ForAppending = 8
Set objTextFile = fs.OpenTextFile (strDirectory & strFile,
ForAppending, True)
objTextFile.WriteLine "text"
Best Regards,
Agnieszka
|