H
What does error code 3434 mean
On Error GoTo ErrHandler'69 Camaro said:Hi.
It means "Application-defined or object-defined error."
Not very helpful, is it? That's because it depends upon the context that
this error occurs, and without seeing your database application and where in
the code this error is occuring, we really can't help you troubleshoot the
problem. However, a proper error handler in every procedure can capture the
error number and the applicable description (which replaces the standard
description listed above) of the error whenever it occurs.
An example of a procedure with error handling that can capture the
appropriate description and display it to the user is:
. . .