updating a subform after saving

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a data entry form. After I enter data and click on the save button, I want to look at it in another tab on the form.
The information I saved is presented in a subform in the other tab. However, the data I just entered does not show up in the subform. Only after I exit the form, and open it again, does the subform show the information I just entered.

Is there a way to update the subform immediately after I enter data?

Thanks.
 
Forms!frmName.Requery
or
me.Requery
or
forms!frmName.Form!subForm.Requery
-----Original Message-----
I have a data entry form. After I enter data and click on
the save button, I want to look at it in another tab on
the form.
The information I saved is presented in a subform in the
other tab. However, the data I just entered does not show
up in the subform. Only after I exit the form, and open it
again, does the subform show the information I just
entered.
 
Back
Top