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.
Dim fs, str_1 as string
set a=fs.opentextfile("c:\myfile.text")
do while a.atendofstream=false
str_1=str_1&vbcrlf&a.readline
loop
open "c:\mynewfile.txt" for outoput as #
print #1, str_1
reset
end sub