A family of Microsoft relational database management systems designed for ease of use.
Hi SumWan,
Have you refreshed the Form data after the new update?
Try pressing the F5 key to refresh the Form data.
If you would like the From data to be refreshed automatically by VBA, you can
- Open the Form in Design View;
- In the Form Property Sheet, click the Event tab;
- Find the "After Update" event for the Form, select [Event Procedure] in the drop-down list;
- Click on the builder button (...) and enter the code: Private Sub Form_AfterUpdate() Me.Requery End Sub
This code tells Access to requery the data underlying a specified form by requerying the source of data for the form, ensuring it displays the latest data from the table.