Hi.
What does error code 3434 mean
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:
.. . .
On Error GoTo ErrHandler
Dim mdl As Module
' Code goes here . . . .
CleanUp:
Set mdl = Nothing
Exit Sub
ErrHandler:
MsgBox "Error in OKBtn_Click( ) in" & vbCrLf & Me.Name & " form." & _
vbCrLf & vbCrLf & "Error #" & Err.Number & vbCrLf &
Err.Description
Err.Clear
GoTo CleanUp
End Sub
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address, so that a message
will be forwarded to me.)