Error Handling

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

Someone provided a great KB resource. It was a help file that got me started
using objects in Access VBA.
I was wondering is there a similar KB resource for Error Handling? I have
been looking on the microsoft website with no success so far.

Currently I have limited error handling built into my database.
I have mztools and it's good but I would like to learn how to do it myself
aswell.

David
 
Thanks Allen

Is CASE something specifically used for the onerror command?
I haven't come across it yet
 
No. You can use Select Case anywhere.

It's kinda like an If for lots of cases, so much easier than:
If ...
ElseIf ...
ElseIf ...
Else
End If
 
That's interesting.
Thanks Allen

Allen Browne said:
No. You can use Select Case anywhere.

It's kinda like an If for lots of cases, so much easier than:
If ...
ElseIf ...
ElseIf ...
Else
End If
 
Back
Top