Hello,
Ive got a form where a customer can place an order. now at the bottom i want to put an execute statement which will look at the product ID that has been ordered and make sure that it dont allow that one to be entered again. This is the coding ive got atm to do that:
the error message im getting is:
Run-time error '3061': Too few parameters. Expected 1.
anyone know how i can sort this out?
Thanks..
Ive got a form where a customer can place an order. now at the bottom i want to put an execute statement which will look at the product ID that has been ordered and make sure that it dont allow that one to be entered again. This is the coding ive got atm to do that:
Code:
db.Execute "UPDATE tblProduct SET chosen = True WHERE ProductID = " & cmbProductID
the error message im getting is:
Run-time error '3061': Too few parameters. Expected 1.
anyone know how i can sort this out?
Thanks..