So I have a Junction table that is combining a tblParts and and tblVendors that are combined into tblPrice. It uses "Part Number" and "Vendor ID" to join the tables. Each part can have multiple vendors with different prices.
I have a form that is used to add new parts to the tblParts table, and I want to have a button that launches another from to add a Vendor as a supplier for a part. (All the vendors are already in the tblVendors table.) The second form comes up just fine, and I can get it to jump to a new record (using the OnLoad), but when it does that it clears all the fields. However, I want to keep one of the fields filled. When a user is hitting this button, the part number from tblParts field needs to stay the same, so when the user selects a vendor from my list, it generates a new unique record with the Part number and the Vendor ID.
I have tried searching, and I can't seem to locate the correct settings or code to accomplish this.
Help? Thanks!