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 fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.OpenTextFile("C:\Report.rtf", ForReading)
RTFBody = f.readall
f.Close
'Then
aBody=RTFBody
Open "C:\Report.rtf" For Input As #1
Do While Not EOF(1)
Line Input #1, TextLine
RTFBody = RTFBody & TextLine
Loop
Close #1