My subform does not update refresh itself after a change.
I have tried this 2 ways. First as a double click on one of the fields on the subform. Now i tried as a single click command button outside the subform (see below)
Private Sub Command321_Click()
DoCmd.OpenForm "frmSCP", acNormal, "", "", , acNormal
DoCmd.GoToControl "txtFormulaID"
DoCmd.FindRecord FormulaID, acEntire, False, , False, , True
End Sub
The Qry works fine with the table change. However, the subform is stubborn. It only shows the correct value if i exit the file and come back in.
Can you help me? thanks Molly
I have tried this 2 ways. First as a double click on one of the fields on the subform. Now i tried as a single click command button outside the subform (see below)
Private Sub Command321_Click()
DoCmd.OpenForm "frmSCP", acNormal, "", "", , acNormal
DoCmd.GoToControl "txtFormulaID"
DoCmd.FindRecord FormulaID, acEntire, False, , False, , True
End Sub
The Qry works fine with the table change. However, the subform is stubborn. It only shows the correct value if i exit the file and come back in.
Can you help me? thanks Molly