In the subform's Form_Click event write:
With Me.Parent
.MyFirstControlInParent = Me.MyFirstControlInSubform
.MySecondControlInParent = Me.MySecondControlInSubform
'etc.
End With
Of course you need to change the control names.
If the control names are identical or can easily be derived, you can
also use a loop:
For each control in me.controls
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.