G
Guest
In my form is a delete button which has code to delete the record from a
table but the fields in the form still show the #Deleted in the fields. I
have added the Me.Requery but it still shows all the #deleted fields. Is it
the underlying query which the form is based that has a problem?
Dim MemSQL As String
MemSQL = "DELETE FROM tblMembers WHERE lngMemberID = " & _Me.lngMemberID & ";"
CurrentDb.Execute MemSQL
Me.Requery
Thanks.
ck
table but the fields in the form still show the #Deleted in the fields. I
have added the Me.Requery but it still shows all the #deleted fields. Is it
the underlying query which the form is based that has a problem?
Dim MemSQL As String
MemSQL = "DELETE FROM tblMembers WHERE lngMemberID = " & _Me.lngMemberID & ";"
CurrentDb.Execute MemSQL
Me.Requery
Thanks.
ck