I have a main form with a subform. When the user clicks a check box stating that a letter was sent, a pop-up form opens asking them which letter was sent. The control on the pop-up form is a combobox. On the after update event of the combobox, I want a control on the Main Form's subform to take place. How do I refer to this control.
I've try:
[Forms]![frmAwaitingMRDetail]![Form]![sfrmFollowup]![NewDenialCodeID] = Me.Letter
and
[Forms]![frmAwaitingMRDetail]![sfrmFollowup]![Form]![NewDenialCodeID] = Me.Letter
But I get Run Time error 2465, that Access cannot find the field "Form" in my expression.
What is the proper syntax to use.
Thanks.