-
Addnew... (solved)
In Access 2000...
I have a "new record" button that add the new record using vb, that works fine, but the control in the lower left corner is not having a new record. It had a total of, for example, 7 records, it create one new, and the 8th one doesn't show up in the total. How do I "actualise" this control? Cause I do that
DoCmd.GoToRecord , , acLast
and it gives me the 7th record instead of the 8th one.
-
Try doing a refresh of the control to refresh the recordset and then it should display the 8th record.
-
Finaly, it was requery, thanx for the cue