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 goto errHandle:
'do junk here
errHandle:
If Err.Number <> 0 Then
Call InsertError(Err.Number,Err.Description,Err.Source,"some more junk here")
else
exit sub
end if
Public Sub InsertError(ErrNum as Integer, ErrDesc as String, ErrSource as string,AddtnlComments as string)
'do what you want in the code here
end sub