Dim RetValue As Variant
DoCmd.SetWarnings False
RetValue = MsgBox("ยืนยันลบข้อมูล", vbOKCancel)
Select Case RetValue
Case 1
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdSaveRecord
DoCmd.RunCommand acCmdDeleteRecord
MsgBox "ลบเรียบร้อยแล้ว"
Case Else
'''
End Select
DoCmd.SetWarnings True
ลองไปปรับใช้ครับ