D
David
This is an easy question
I have searched around the rooms but I can't find a similar thread.
I have a text box on my form that I want to use to update a table record
when I click on 'update'
Private Sub Command12_Click()
CurrentDb.Execute "UPDATE [Library] SET [Borrower] = " & Borrower & "
WHERE [Book ID] = " & BookID
End Sub
Where am I going wrong?
I have searched around the rooms but I can't find a similar thread.
I have a text box on my form that I want to use to update a table record
when I click on 'update'
Private Sub Command12_Click()
CurrentDb.Execute "UPDATE [Library] SET [Borrower] = " & Borrower & "
WHERE [Book ID] = " & BookID
End Sub
Where am I going wrong?