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.
On error resume next
On error goto 0
Err
Number
Description
Clear()
on error resume next
' put it your 'risky' command
if err.number <> 0 Then
Msgbox err.description,, "Error Number " & err.Number
err.clear
exit sub
end if
On error goto 0