Workaholic
Registered User.
- Local time
- Today, 10:16
- Joined
- Jun 20, 2004
- Messages
- 17
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 problem is that only the first two fields are updated no matter how I try to write the statement.
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 problem is that only the first two fields are updated no matter how I try to write the statement.