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.
Sub Test()
...
on error goto err_ODBC 'if finds error from now on
'it will jump to err_ODBC
... 'here is your code that creates the error
on error goto 0 'if finds error after, will
'display it
...
Exit Sub
err_ODBC:
'Here create code to deal with error
Resume LineX 'LineX is another line in your
'code where you want to jump
End Sub
[\code]
Have fun,
Nath