I have a parent form “frmPerson” and subform “frmClasses”. On the Parent form there is a textbox “txtTotalPer”. On the frmClasses subform the user will type in a number of contact hours received. Once they leave that new record I want the txtTotalPer to update reflecting the new total number of contact hours per license period.
I tried this without results.
Private Sub Form_AfterUpdate()
Parent!txtTotalPer.Requery
End Sub
I would appreciate your help. Thank you. Fay