I want to insert a record into a table that's value is in a text box on my form. When I click the "Insert" button, I want that value to go to said field in the table...
Private Sub btn_insert_Click()
On Error GoTo Err_btn_insert_Click
DoCmd.GoToRecord , , acNewRec
Exit_btn_insert_Click...