prevent multiple records deletion in a form

J

John Vinson

How Is it possible to prevent a multiple records
deletion in a form?
Thanks Ale

Put code in the Form's BeforeDeleteConfirm event to check whether the
deletion is allowable.

For a more detailed answer, please post a more detailed question.
 
A

Allen Browne

Cancel the form's Delete event if SelHeight indicates more than one row is
selected:

Private Sub Form_Delete(Cancel As Integer)
If Me.SelHeight > 1 Then
Cancel = True
MsgBox "Multi-row deletion not allowed."
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top