Traping server error while deleting a record from access

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
 
C

ChrisJ

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)?
 
Top