I am using the following code to transfer data from text boxes to a table.
Private Sub cmdFeedSub_Click()
DoCmd.RunSQL
("INSERT INTO Interface_Feedback ([First Name],Surname,Comment)
VALUES (forms!frmfeedv2!txtFeedFname,forms!frmfeedv2!txtFeedSname,forms!frmfeedv2!txtFeedCom)")
End Sub
The...