Re: List of DAO error codes

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

From: Dale (dale0610_at_hotmail.com)
Date: 04/06/04

  • Next message: John: "Invoice Program"
    Date: Tue, 06 Apr 2004 15:29:01 -0700
    
    

    Thanks a lot Jim

    Jim Carlock wrote:

    > Dale,
    >
    > You can use some VBA code I think such as:
    >
    > Dim ErrType As DAO.Error
    > Dim sErrMsg As String
    > For Each errType in DAO.Errors
    > sErrMsg = sErrMsg & "Error Number: " & errType.Number & " " &
    > errType.Description & vbCrLf
    > Next errType
    >
    > There seem to be three properties for DAO.Error type.
    >
    > You'll can play around with that on how to throw it into a textbox
    > or richtextbox, or you can throw the information into a data table.
    >


  • Next message: John: "Invoice Program"