how do i get rid of #Deleted in Access form???

O

Ofer Cohen

Are you deleting the record using a query?

In that case you need to run

Me.Requery

after running the query, to refresh the data in the form

********
Another option will be to run the code

RunCommand acCmdDeleteRecord

to delete the record that has the focus in the form
 
Top