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 hApp As Object
On Error Resume Next
Set hApp = GetObject(, "Word.Application")
If Err.Number <> 0 Then
MsgBox "Word is Not Running"
Else
MsgBox "Word is Running"
End If