Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set fso=CreateObject("Scripting.FileSystemObject")
Set ts=fso.OpenTextFile("c:\test.txt",1) 'ForReading
buf=ts.ReadAll: ts.Close
arr=Split(buf,vbCrLf)
arr(6)="New line#7" ' Option Base 0
Set ts=fso.OpenTextFile("c:\test.txt",2) 'ForWriting
For i=0 To Ubound(arr)
ts.WriteLine arr(i)
Next 'i
ts.Close