So I have a system that in which I am required to take data from an unbound text box and commit said data to a bound text box. That part works just fine, but I’m also wanting to use the insert into command to capture the information in the unbound box and commit it to a type of historical table.
db.Execute "Insert Into stagingtest (Me.A, Me.B, Me.C)" & _
"Values(" & Me.txtA & ", " & Me.txtB & ", " & Me.txtC & ")"
That’s what I have currently, but everytime I run it, I get an “Object Required” error.
I changed the code to
and it seems to work without a hitch.
My apologies if I wasted anyone’s time.