Well I have put off embarrasing myself by writing to this forum with my dopey question but here goes:
I have been trying to find a method of deleting the current record.
My attempt so far is as follows:
Dim MyDB As Database
Dim MyRS As Recordset
Set MyDB = CurrentDb
Set MyRS = MyDB.OpenRecordset("AllQuestions", dbOpenDynaset)
MyRS.Delete
This kind of works, but in my text/combo boxes I am left with: #Deleted.
Is there an alternative solution or can somebody tell me where I am going wrong
Thanks
I have been trying to find a method of deleting the current record.
My attempt so far is as follows:
Dim MyDB As Database
Dim MyRS As Recordset
Set MyDB = CurrentDb
Set MyRS = MyDB.OpenRecordset("AllQuestions", dbOpenDynaset)
MyRS.Delete
This kind of works, but in my text/combo boxes I am left with: #Deleted.
Is there an alternative solution or can somebody tell me where I am going wrong
Thanks