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.
Public Sub Log(ByRef strLogtext As String)
Dim objFSO As Scripting.FileSystemObject
Dim objStream As TextStream
Set objFSO = New Scripting.FileSystemObject
Set objStream = objFSO.OpenTextFile("c:\TEMP\log.txt", ForAppending, True)
objStream.Write strLogtext & vbCrLf
objStream.Close
Set objStream = Nothing
Set objFSO = Nothing
End Sub