D
Davy
I am trying to execute an UPDATE stored procedure, from
code, that requires 3 parameters. I tried the following
two line items but get an error with both of them.
cn.Execute "StoredProcedure", Parameters = Array
(ReqAmount, Forms![Requisition List View (Detail)]!
[Purchase Order Number], ReqAmount)
cn.Execute "StoredProcedure '" & ReqAmount & "'", "'" &
Forms![Requisition List View (Detail)]![Purchase Order
Number] & "'", "'" & ReqAmount & "'"
Which or what should I use? What mistake(s) am I making?
Help
Davy
code, that requires 3 parameters. I tried the following
two line items but get an error with both of them.
cn.Execute "StoredProcedure", Parameters = Array
(ReqAmount, Forms![Requisition List View (Detail)]!
[Purchase Order Number], ReqAmount)
cn.Execute "StoredProcedure '" & ReqAmount & "'", "'" &
Forms![Requisition List View (Detail)]![Purchase Order
Number] & "'", "'" & ReqAmount & "'"
Which or what should I use? What mistake(s) am I making?
Help
Davy