Working with subforms

  • Thread starter Thread starter John
  • Start date Start date
J

John

There is a main form that I use to show users summary
information. If the user needs to see more information
they click on the detail screen and can get the rest of
the information. They can change information only on the
detail screen. The problem I am having is that I want
them to be able to update information and when they close
out of the subform, the main form behind it updated and on
the record they just updated. Does anyone know a way to
do this? Any help would be greatly appreciated.

Thanks,
John
 
You could execute a refresh of the main form in the details form "close"
event.


forms!MyMainForm.refresh.
 
Back
Top