My main form has a list box where a person (CurrentPersonName ) is selected.
The subform is populated by data from the table record of the selected person using a where statement. (Q = Chr$(34))
Forms!DisplayPersonProperty!PersonData.Form.Filter = _
"PersonByLastFirst.FullName=" _
& Q & CurrentPersonName & Q
Forms!DisplayPersonProperty!PersonData.Form.FilterOn = True
When a field in the subform is updated, while other files in the subform can also be updated, no actions on the main form can. Forexample, the selection of a different person from the list box can't be done.
I need some way to "get back to" the main form.
****
The subform is populated by data from the table record of the selected person using a where statement. (Q = Chr$(34))
Forms!DisplayPersonProperty!PersonData.Form.Filter = _
"PersonByLastFirst.FullName=" _
& Q & CurrentPersonName & Q
Forms!DisplayPersonProperty!PersonData.Form.FilterOn = True
When a field in the subform is updated, while other files in the subform can also be updated, no actions on the main form can. Forexample, the selection of a different person from the list box can't be done.
I need some way to "get back to" the main form.
****