VbaInet. Out of curiosity...
Is it not possible to place a single delete button for both the delete queries?
It would be less confusing for the user than to have two delete button.
Is there some arrangments that can be accomplished?
Great VbaInet. It works. I can delete the record .
But now I'm stuck on running Requery.
In Bold is what I have found on the net. But it does not works.
Code:
Private Sub cmdeliminaPrestazioni_Click()
DoCmd.RunCommand acCmdSaveRecord
CurrentDb.Execute "QueryeliminaPrestazioni"
CurrentDb.Execute "QueryeliminaPIP"
Me.Requery
[B]Me.FRMSottMascQueryPIPPerUnire.Form.Requery[/B]
End Sub