Traping server error while deleting a record from access

  • Thread starter Thread starter Ravinder
  • Start date Start date
R

Ravinder

Hi

I have an access application which has linked tables to Sql Server. I
can trap the Sql Server error message on new add and update of records
by using MSDN article no 206175. But while deleting a record I am not
able to trap the error message.

Please help

Ravinder
 
The delete is either going to succeed (in which case the
record(s) will be gone, or fail (in which case the record
(s) - or some of them - will still be there.

Why not check for the existance of the deleted record(s)?
 
Back
Top