Hi folks,
I know that there is an escape module that can be created to determine different errors and print out a custom message instead of the system message like in the following :
But how can I prevent system messages for things like adding,updating and deleting records?
I know that there is an escape module that can be created to determine different errors and print out a custom message instead of the system message like in the following :
Code:
On Error GoTo Err_End_Click
Err_End_Click:
Select Case Err.Number
Case Else
MsgBox ("There is no record to update!")
End Select
Resume Exit_End_Click
But how can I prevent system messages for things like adding,updating and deleting records?