I have 2 forms setup. The user enters a part ID and date range then clicks a button to display the results in a listbox. From there I would like the user to double click the record they are looking for and then have the other form open so they can edit the record. I can get the second form to open but it doesn't have the record on it. The form is blank.
Here is the code I have -
DoCmd.OpenForm "QA_Supplier_Quality_Lot_Edit_TEST_frm", , , "Receiver_ID_txt= " & Me!List7
Receiver_ID_txt is on the second form. It's the unique ID.
How do I get the data to the second form?
Here is the code I have -
DoCmd.OpenForm "QA_Supplier_Quality_Lot_Edit_TEST_frm", , , "Receiver_ID_txt= " & Me!List7
Receiver_ID_txt is on the second form. It's the unique ID.
How do I get the data to the second form?