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 Sub MyProcedure()
On Error Goto ErrHandler
'code that triggers cancel error
ExitHere:
Exit Sub
ErrHandler:
If Err <> 2501 Then
MsgBox "Error occurred: " & Err & "-" & Err.Description
End If
Resume ExitHere
End Sub