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.
Function IsOutLookOpen() As Boolean
Dim ol As Outlook.Application
Dim blnOpen As Boolean
On Error Resume Next
Set ol = GetObject(, "Outlook.Application")
If Err = 0 Then
IsOutLookOpen = True
Else
Set ol = Nothing
End If
End Function