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.
Dim blnErr as Boolean
Dim intABC as integer
blnErr = IsNumeric(strABC)
if blnErr = false
On error resume Next
intAbc = Cint(strAbc) ' err if int < 32768 or > 32767
blnErr = (Err.Number <> 0)
On error goto 0
End if
if blnErr then
MgBox "oops"
End if