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 fErrorMsg()
On Error GoTo Err_Handler
Dim i As Integer
i = Null 'to raise an error
Exit Sub
Err_Handler:
MsgBox "fErrorMsg: (#" & Err.Number & ") " & Err.Description
End Sub
Private Const MODULE_NAME = "frmMain"