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 Function GetOfficeVersion() As Single
On Error GoTo ErrHandler
Dim wd As Word.Application
Set wd = CreateObject("Word.Application")
If Not wd Is Nothing Then
GetOfficeVersion = CSng(wd.Version)
wd.Quit False
Set wd = Nothing
End If
ExitHere:
Exit Function
ErrHandler:
Debug.Print "Error: " & Err & "-" & Err.Description
Resume ExitHere
End Function
Public Function 2002orLater() As Boolean
On Error GoTo ErrHandler
2002orLater = (GetOfficeVersion > 9#)
ExitHere:
Exit Function
ErrHandler:
Debug.Print Err, Err.Description
Resume ExitHere
End Function