I have a table that needs to be filled with some record through a form. I am using this code:
Set rp = CurrentDb.OpenRecordset("table1")
Do
rp.Edit
rp!field2 = Text22
rp.Update
rp.MoveNext
Loop
When the code fills the table and gets to the end of the file, I get the 3021 error.
Why is this happening?