Refreshing subforms with info

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

Guest

I have a form with a subform. I want to add to the main form, push a button
that runs a macro that appends data into the table that drives the subform.
I can get this to happen ok, but I cant get my screen to refresh with the new
information in the subform.

Table one for the main form is the one side of the relationship that holds
main interview information.

Table two are the questions asked at each interview.

The questions are always the same and can be modified because they are also
in a question table.

I want these questions to appear when I push a button, in the subform of my
form.

THank you,
 
"screen to refresh with the new
information in the subform."


Forms![MainFormName]![SubFormName].Form.Requery
 
Back
Top