What does error code 3434 mean

  • Thread starter Thread starter Guest
  • Start date Start date
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.)
 
?accesserror (3434)
Cannot expand named range.

What context are you receiving this error message in?

_________________________________________


news:[email protected]...
 
'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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top