Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("MElog.txt", True)
a.writeline ("blah blah blah")
Using the above format, is it possible to open and write to another text file while the other file is still open? Or is the first file closed when the second text file is opened?
Can an existing text file be opened and edited? If so, can you point me in the right direction for help?
Thanks, I appreciate any respons.
Dan