Hi i was wonderinging if there is a way to capture all errors in a module or something.

i want to have a general error for example.

on error goto GenError
code

exit sub

GenError:
msgbox err.source & " " & err.description

then on every sub proceedure in my application all i have to do is call upon this.

Any Help You can give me would be great.