Private Sub BDELETE_Click()
On Error GoTo Err_BDELETE_Click
Dim Response As String
Dim Cancel As Integer
Response = acDataErrContinue
If MsgBox("Delete this record?", vbYesNo, "Delete Confirmation") = vbYes Then
If MsgBox(" Are you SURE you want to delte this Record?" & vbCrLf & _
"This will permanently delete the record.", vbYesNo, "2nd Delete Confirmation") = vbYes Then
If Me.NewRecord Then Exit Sub
DoCmd.RunCommand acCmdDeleteRecord
End If
End If
Exit_BDELETE_Click:
Exit Sub
Err_BDELETE_Click:
MsgBox Error$
Resume Exit_BDELETE_Click
End Sub