Private Sub Form_Error(DataErr As Integer, Response As Integer) '出错事件
MsgBox "您输入的内容不符合要求。" '自定义提示对话框
SendKeys "{esc}" '模拟按下ESC键,取消系统提示对话框
SendKeys "{esc}" '模拟按下ESC键,取消错误输入的内容
End Sub
Private Sub Form_Error(DataErr As Integer, Response As Integer)
Select Case DataErr
Case 3022
Response = 2
MsgBox "主键或索引不能重复哟!",,"自定义提示"
End Select
End Sub