Hi all,
I am getting this message pop up (Run-time Error '424': Object required) when I try and add the contents of the form to the table. Could somebody help please.
Many Thanks
Code:Private Sub btnAdd_Click() Dim iCtr As Integer For iCtr = 1 To Me.txtQty strCurrentDB.Execute "INSERT INTO tblTest (Item & Date Purchased) VALUES ('" & Me.txtItem & Me.txtDate & "')" Next End Sub