Under Tools/Options/Edit/Find there are three checkboxes under Confirm which allow you to suppress the confirmation messages. However, these will affect all confirmations throughout your system. You may not want the messages to be suppressed everywhere.<br><br>If you want to be more selective about suppressing the message, create a delete query that will delete the selected record. Let's say it's called "qryDeleteRecord". Then write some VBCode that looks like this:<br><br>Docmd.SetWarnings Off<br>Docmd.OpenQuery "qryDeleteRecord"<br>Docmd.SetWarnings On<br><br>and put it in whichever event makes sense logically within your application.