subform requery

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

Guest

I have a form for entering information about jobs. On this
form is a subform for entering radioactive dose amount
recieved while performing the related job and another
subform that displays the current total dose for all jobs.
The total is meant to be a running sum.

I am having trouble making the total form update to the
new data when a dose number is entered or changed. I tried
putting a requery in the afterupdate of the dose entry
textbox but it won't recognize the subform.
 
I have a form for entering information about jobs. On this
form is a subform for entering radioactive dose amount
recieved while performing the related job and another
subform that displays the current total dose for all jobs.
The total is meant to be a running sum.

I am having trouble making the total form update to the
new data when a dose number is entered or changed. I tried
putting a requery in the afterupdate of the dose entry
textbox but it won't recognize the subform.


You probably missed something in the reference's syntax.
From on subform to another, it would be:

Me.Parent.subform2.Form.Requery
 
Back
Top