Solve : Delete current records which is displaying in the objects?
Answer»
Dear Sir
I want to records which is displaying in DIFFERENT objects. I have used below code, but doesn't work properly.
Private Sub cmddelete_Click() Dim i As Integer i = MsgBox("REALLY want to delete?", vbYesNo, "Delete OPTION") If i = vbOK Then rst.Delete adAffectCurrent End If End Sub