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.
Private Function CanOpen (filename as String) as Boolean
Dim f as Long
f = Freefile
On Error Resume Next
Open filename for Input Access Read Lock Read as f
If Not Err
CanOpen = True
Else
CanOpen = False
Err.Clear
End If
End Function