Article ID: 139041
Article Last Modified on 1/19/2007
Private Sub Form_Error(DataErr As Integer, Response As Integer)
MsgBox Error(DataErr)
Response = acDataErrContinue
End Sub
Private Sub Form_Error(DataErr As Integer, Response As Integer)
MsgBox Application.AccessError(DataErr)
Response = acDataErrContinue
End Sub
Data integrity rules have been changed. Existing data may not be
valid for the new rules.
This process may take a long time. Do you want the existing data to
be tested with the new rules?
OnError: [Event Procedure]
Private Sub Form_Error(DataErr As Integer, Response As Integer)
MsgBox Error$(DataErr)
MsgBox Application.AccessError(DataErr)
Response = acDataErrDisplay
End Sub
Application-defined or object-defined error.
The text you entered isn't an item in the list.
The text you entered isn't an item in the list.
Application-defined or object-defined error
< a message box with no text appears >
Field 'Orders.EmployeeID' can't contain a null value.
Keywords: kberrmsg kbprb KB139041