H
hotrod1952 via AccessMonster.com
I am trying to set-up a command button on a form to take data in two unbound
textboxes and store them into a table. The following is my code from the
click event. I must have a syntax error or ?
Dim strSQL As String
strSQL = "INSERT INTO Program1 (opcode,sp) " & "VALUES (" & me.cboOpcode1
& ", " me.TxtSp1 & ");"
DoCmd.RunSQL
What am i missing?
textboxes and store them into a table. The following is my code from the
click event. I must have a syntax error or ?
Dim strSQL As String
strSQL = "INSERT INTO Program1 (opcode,sp) " & "VALUES (" & me.cboOpcode1
& ", " me.TxtSp1 & ");"
DoCmd.RunSQL
What am i missing?