I have a form (frmCustomer) which is based on a link to a table-view in our SQL Server database. With this form I display all the contact information for the customer (name, address, phone, etc) through the use of a search button. I also have a subform (frmItems), which is going to be use to input new orders and items information. I placed this subform in the MainForm. I can search any record in the main form and get customer information, then at the bottom I use the subform to enter new data. When I save the subform (the "Save" button is on the subform) it saves what it is entered in the subform textboxes. But due to business requirements I need to also attach the customer information to each new record, which is only found on the Main Form. Right now I only get the customer# from the Main form because that's the primary key link I have between both forms/tables. My question is, is it possible to add to the subform's save button a code that also saves the current data displayed in the main form to the table in the subform?