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.
if Condition1 then
'do thing
if Condition2 then
'do other thing
end if
end if
try
'do thing
if NoDataFound then
dim excNoData as New Exception("No data found")
throw excNoData
end if
'do other thing
catch exc as exception
'handle exception
end try