Hi,
I have a form set to continuous, and on the Details bottom part, I have added some field so that if they make changes on those field, it will also update the selected record. Kinda a split form way, but I prefer continuous because of its layout.
My concern is, when I filter that continuous form, and then delete record, sometimes I see the prompt "Record is deleted#". Seems like I am trying to access a deleted record problem.
Here is the code I am using to delete the record in the continuous form:
Am I missing anything that's why I get that error sometime?
Thanks
I have a form set to continuous, and on the Details bottom part, I have added some field so that if they make changes on those field, it will also update the selected record. Kinda a split form way, but I prefer continuous because of its layout.
My concern is, when I filter that continuous form, and then delete record, sometimes I see the prompt "Record is deleted#". Seems like I am trying to access a deleted record problem.
Here is the code I am using to delete the record in the continuous form:
Code:
Me.Form.Recorsetclone.Bookmark = Me.Form.Bookmark
Me.Form.Recorsetclone.Delete
Me.Form.Refresh
Am I missing anything that's why I get that error sometime?
Thanks