Hey Guys,
I have a form where im fillind data into boxes and then i have "add record" button which is sending the data to a table.The code is like this:
Private Sub addrecord_Click()
CurrentDb.Execute "INSERT INTO tablename(a1,a2,a3,a4,a5,a6)" & _
"VALUES('" & b1 & "','" & b2 & "','" & b3 &...