What does error code 3434 mean

6

'69 Camaro

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.)
 
T

Tom Wickerath

?accesserror (3434)
Cannot expand named range.

What context are you receiving this error message in?

_________________________________________


news:[email protected]...
 
D

david epsom dot com dot au

'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:

. . .
On Error GoTo ErrHandler

Dim mdl As Module

1000 ' Code goes here . . . .
1010
1020 '...

CleanUp:

9000 Set mdl = Nothing
9010
9020 Exit Sub

ErrHandler:

MsgBox "Error at " & me.name & ".OKBtn_Click( )." & erl & _
vbCrLf & vbCrLf & "Error #" & Err.Number & vbCrLf & _
Err.Description
Err.Clear
GoTo CleanUp
End Sub

(david)
 
Top