Backend: SQL Server
Front End: MS Access
Just a small problem with a stored procedure im trying to create:
The above I believe is correct for updating all records to active with an invoice number of:
However, after I try to save it I get the following error:
Not very descriptive and after searching google and these forums I have still yet to find a solution. Help appreciated.
Phil
Front End: MS Access
Just a small problem with a stored procedure im trying to create:
Code:
UPDATE tblOrders
SET active = 1
WHERE (invNumber = 'Forms!frmMainsub1!oID')
The above I believe is correct for updating all records to active with an invoice number of:
Code:
'Forms!frmMainsub1!oID'
However, after I try to save it I get the following error:
The paramenter is incorrect
Not very descriptive and after searching google and these forums I have still yet to find a solution. Help appreciated.
Phil