I have a form that the user enters some information on and then clicks a
button to save the record. I do with the following line:
DoCmd.DoMenuIte m acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Once this line executes, I have a sub form that I want to "refresh" because
the newly saved information should now display on the sub form. I am trying
to do this with this line:
Forms![sub-frmRegistered_B idders].Requery
Nut I get and error message telling me that Access can not find the form
"sub-frmRegistered_B idders".
So my question is this, how do I refresh the sub form after the information
is stored?
Thanks,
Mike
button to save the record. I do with the following line:
DoCmd.DoMenuIte m acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Once this line executes, I have a sub form that I want to "refresh" because
the newly saved information should now display on the sub form. I am trying
to do this with this line:
Forms![sub-frmRegistered_B idders].Requery
Nut I get and error message telling me that Access can not find the form
"sub-frmRegistered_B idders".
So my question is this, how do I refresh the sub form after the information
is stored?
Thanks,
Mike
Comment