So, how would you go about selecting a record from one recordset and adding it to another?
RS1 is set within SubForm1 within Form1. RS2 is set within SubForm2 within Form 2.
I would like to open Form1, click a button which opens Form2, select a record or two, and add the selected records to the SubForm1.
I've got as far as getting the "?Name" error in SubForm1's fields.
This is how I set the record set from within Form2:
Thanks for the help.
RS1 is set within SubForm1 within Form1. RS2 is set within SubForm2 within Form 2.
I would like to open Form1, click a button which opens Form2, select a record or two, and add the selected records to the SubForm1.
I've got as far as getting the "?Name" error in SubForm1's fields.
This is how I set the record set from within Form2:
Code:
Set rst = Forms!fRequest1!subOrderDetails.Form.Recordset
Thanks for the help.