I have a simple question about error-handling in VBA.
I know how to use the On Error GoTo ErrHandler statement but instead using my own code at the specified label,
In your error handler code your can access the Err.Number and Err.Description. The Description in the error message you would have seen without error handling, so is the equivalent of ex.Message in your code sample.