General discussion

  • Creator
    Topic
  • #2117473

    Error Code Listings

    Locked

    by nettech ·

    Is there a place someone knows about that has a list of runtime error codes and what they mean? For instance Runtime Error 380, etc..

All Comments

  • Author
    Replies
    • #3856918

      Error Code Listings

      by gutridgesj ·

      In reply to Error Code Listings

      MicroSoft Technet should have that info.

    • #3857110

      Error Code Listings

      by emcs ·

      In reply to Error Code Listings

      It does depend on what is causing the runtime error. I know of a web site that has runtime errot for NT 4.0, VB, or DOS. They all have runtime error codes, and they are all different. Give us a little more information please.

      dennie

    • #3861225

      Error Code Listings

      by it_cowboy ·

      In reply to Error Code Listings

      You can generate your own list from Access 2000 quite easily with the following code…

      Create a table with ErrNumber as a Long Integer Field and ErrDescription as a Memo field, call the table ‘ErrorList’

      Cut and paste this code into a button click event on a form and run it…

      Sub CreateErrorList_Click()

      Dim rs As Recordset
      Dim X As Long
      Dim strErrText As String

      strErrText = “Application-defined or object-defined error”

      Set rs = CurrentDb.OpenRecordset(“ErrorList”, dbOpenDynaset)

      For X = 0 To 40000
      If Len(AccessError(X)) > 0 And AccessError(X) <> strErrText Then
      rs.AddNew
      rs!ErrNumber = X
      rs!ErrDescription = AccessError(X) rs.Update
      End If
      Next

      End Sub

    • #3860870

      Error Code Listings

      by nettech ·

      In reply to Error Code Listings

      This question was closed by the author

Viewing 3 reply threads