Re: List of DAO error codes
From: Dale (dale0610_at_hotmail.com)
Date: 04/06/04
- Previous message: Jim Carlock: "Re: List of DAO error codes"
- In reply to: Jim Carlock: "Re: List of DAO error codes"
- Messages sorted by: [ date ] [ thread ]
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.
>
- Previous message: Jim Carlock: "Re: List of DAO error codes"
- In reply to: Jim Carlock: "Re: List of DAO error codes"
- Messages sorted by: [ date ] [ thread ]