You are on page 1of 1

Dim fso, txtstrm Set fso=CreateObject("Scripting.Filesystemobject") fso.createtextfile("c:\data.txt") Set txtstrm=fso.OpenTextFile("c:\data.txt", 8) with txtstrm .writeline "LAST line" .

writeline "DONE" .close end with

You might also like